Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
debomatic-webui
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
debomatic-webui-admins
debomatic-webui
Commits
9b6b1f8e
Commit
9b6b1f8e
authored
Jun 21, 2014
by
Leo Iannacone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
better jshintrc files - split checks between node and browser
parent
fe20412a
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
26 additions
and
10 deletions
+26
-10
.jshintrc
.jshintrc
+0
-7
debomatic-webui/lib/parser.js
debomatic-webui/lib/parser.js
+2
-1
debomatic-webui/public/javascripts/.jshintrc
debomatic-webui/public/javascripts/.jshintrc
+9
-0
debomatic-webui/public/javascripts/main.js
debomatic-webui/public/javascripts/main.js
+7
-1
debomatic-webui/public/javascripts/page_distribution.js
debomatic-webui/public/javascripts/page_distribution.js
+4
-1
debomatic-webui/public/javascripts/page_generic.js
debomatic-webui/public/javascripts/page_generic.js
+2
-0
debomatic-webui/public/javascripts/preferences.js
debomatic-webui/public/javascripts/preferences.js
+2
-0
No files found.
.jshintrc
View file @
9b6b1f8e
{
"globals": {
"$": false,
"console": false,
"config": false,
"Utils": false,
"debug_socket": false
},
"globalstrict": true,
"browser": true,
"node": true
...
...
debomatic-webui/lib/parser.js
View file @
9b6b1f8e
/*jshint multistr: true */
'
use strict
'
;
function
Parser
()
{
...
...
@@ -35,4 +36,4 @@ Usage: %s [-c config]\n\
});
}
module
.
exports
=
Parser
module
.
exports
=
Parser
;
debomatic-webui/public/javascripts/.jshintrc
0 → 100644
View file @
9b6b1f8e
{
"globals": {
"$": false,
"console": false,
"config": false
},
"globalstrict": true,
"browser": true
}
debomatic-webui/public/javascripts/main.js
View file @
9b6b1f8e
// main client javascript
/* global io: false */
/* global Preferences: false */
/* global Page_Generic: false */
/* global Page_Distrubion: false */
'
use strict
'
;
var
preferences
=
new
Preferences
();
...
...
@@ -23,7 +29,7 @@ if (window.location.pathname == '/') {
label
=
config
.
debomatic
.
admin
.
name
;
real_email
=
'
<a href="mailto:
'
+
real_email
+
subject
+
'
">
'
+
label
+
'
</a>
'
;
$
(
this
).
html
(
real_email
);
})
})
;
}
var
socket
=
io
.
connect
(
'
/
'
);
...
...
debomatic-webui/public/javascripts/page_distribution.js
View file @
9b6b1f8e
'
use strict
'
;
/* global
debug
: false */
/* global
Utils
: false */
/* global page_generic: false */
/* global debug: false */
/* global debug_socket: false */
// function to get all files in on click
// event comes from HTML
...
...
debomatic-webui/public/javascripts/page_generic.js
View file @
9b6b1f8e
/* global Utils: false */
/* global debug_socket: false */
'
use strict
'
;
function
Page_Generic
()
{
...
...
debomatic-webui/public/javascripts/preferences.js
View file @
9b6b1f8e
/* global debug: false */
/* global page_generic: false */
'
use strict
'
;
function
Preferences
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment