BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
588d7e8a
Commit
588d7e8a
authored
Jan 12, 2017
by
Mike Greiling
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
resolve all parseInt radix eslint violations
parent
04eff5fd
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
17 deletions
+17
-17
awards_handler.js
app/assets/javascripts/awards_handler.js
+2
-2
board.js.es6
app/assets/javascripts/boards/components/board.js.es6
+2
-2
boards_store.js.es6
app/assets/javascripts/boards/stores/boards_store.js.es6
+2
-2
issuable_form.js
app/assets/javascripts/issuable_form.js
+2
-2
issues_bulk_assignment.js.es6
app/assets/javascripts/issues_bulk_assignment.js.es6
+1
-1
line_highlighter.js
app/assets/javascripts/line_highlighter.js
+3
-3
notes.js
app/assets/javascripts/notes.js
+2
-2
project_new.js
app/assets/javascripts/project_new.js
+3
-3
No files found.
app/assets/javascripts/awards_handler.js
View file @
588d7e8a
/* eslint-disable func-names, space-before-function-paren, wrap-iife, max-len, no-var, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, no-unused-vars, no-else-return, prefer-template, quotes, comma-dangle, no-param-reassign, no-void,
radix,
brace-style, no-underscore-dangle, no-return-assign, camelcase */
/* eslint-disable func-names, space-before-function-paren, wrap-iife, max-len, no-var, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, no-unused-vars, no-else-return, prefer-template, quotes, comma-dangle, no-param-reassign, no-void, brace-style, no-underscore-dangle, no-return-assign, camelcase */
/* global Cookies */
(
function
()
{
...
...
@@ -134,7 +134,7 @@
return
this
.
decrementCounter
(
$emojiButton
,
emoji
);
}
else
{
counter
=
$emojiButton
.
find
(
'.js-counter'
);
counter
.
text
(
parseInt
(
counter
.
text
())
+
1
);
counter
.
text
(
parseInt
(
counter
.
text
()
,
10
)
+
1
);
$emojiButton
.
addClass
(
'active'
);
this
.
addYouToUserList
(
votesBlock
,
emoji
);
return
this
.
animateEmoji
(
$emojiButton
);
...
...
app/assets/javascripts/boards/components/board.js.es6
View file @
588d7e8a
/* eslint-disable comma-dangle, space-before-function-paren, one-var
, radix
*/
/* eslint-disable comma-dangle, space-before-function-paren, one-var */
/* global Vue */
/* global Sortable */
...
...
@@ -89,7 +89,7 @@
if (e.newIndex !== undefined && e.oldIndex !== e.newIndex) {
const order = this.sortable.toArray();
const list = Store.findList('id', parseInt(e.item.dataset.id));
const list = Store.findList('id', parseInt(e.item.dataset.id
, 10
));
this.$nextTick(() => {
Store.moveList(list, order);
...
...
app/assets/javascripts/boards/stores/boards_store.js.es6
View file @
588d7e8a
/* eslint-disable comma-dangle, space-before-function-paren, one-var, space-in-parens, no-shadow,
radix,
dot-notation, max-len */
/* eslint-disable comma-dangle, space-before-function-paren, one-var, space-in-parens, no-shadow, dot-notation, max-len */
/* global Cookies */
/* global List */
...
...
@@ -86,7 +86,7 @@
},
moveList (listFrom, orderLists) {
orderLists.forEach((id, i) => {
const list = this.findList('id', parseInt(id));
const list = this.findList('id', parseInt(id
, 10
));
list.position = i;
});
...
...
app/assets/javascripts/issuable_form.js
View file @
588d7e8a
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle,
radix,
no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-useless-escape, no-new, quotes, object-shorthand, no-unused-vars, comma-dangle, no-alert, consistent-return, no-else-return, prefer-template, one-var, one-var-declaration-per-line, curly, max-len */
/* global GitLab */
/* global UsersSelect */
/* global ZenMode */
...
...
@@ -51,7 +51,7 @@
IssuableForm
.
prototype
.
handleSubmit
=
function
()
{
var
fieldId
=
(
this
.
issueMoveField
!=
null
)
?
this
.
issueMoveField
.
val
()
:
null
;
if
((
parseInt
(
fieldId
)
||
0
)
>
0
)
{
if
((
parseInt
(
fieldId
,
10
)
||
0
)
>
0
)
{
if
(
!
confirm
(
this
.
issueMoveConfirmMsg
))
{
return
false
;
}
...
...
app/assets/javascripts/issues_bulk_assignment.js.es6
View file @
588d7e8a
/* eslint-disable comma-dangle, quotes, consistent-return, func-names, array-callback-return, space-before-function-paren, prefer-arrow-callback,
radix,
max-len, no-unused-expressions, no-sequences, no-underscore-dangle, no-unused-vars, no-param-reassign */
/* eslint-disable comma-dangle, quotes, consistent-return, func-names, array-callback-return, space-before-function-paren, prefer-arrow-callback, max-len, no-unused-expressions, no-sequences, no-underscore-dangle, no-unused-vars, no-param-reassign */
/* global Issuable */
/* global Flash */
...
...
app/assets/javascripts/line_highlighter.js
View file @
588d7e8a
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-underscore-dangle, no-param-reassign, prefer-template, quotes, comma-dangle, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line,
radix,
no-else-return, max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, no-underscore-dangle, no-param-reassign, prefer-template, quotes, comma-dangle, prefer-arrow-callback, consistent-return, one-var, one-var-declaration-per-line, no-else-return, max-len */
// LineHighlighter
//
...
...
@@ -122,8 +122,8 @@
// ?L(\d+)(?:-(\d+))?$/)
matches
=
hash
.
match
(
/^#
?
L
(\d
+
)(?:
-
(\d
+
))?
$/
);
if
(
matches
&&
matches
.
length
)
{
first
=
parseInt
(
matches
[
1
]);
last
=
matches
[
2
]
?
parseInt
(
matches
[
2
])
:
null
;
first
=
parseInt
(
matches
[
1
]
,
10
);
last
=
matches
[
2
]
?
parseInt
(
matches
[
2
]
,
10
)
:
null
;
return
[
first
,
last
];
}
else
{
return
[
null
,
null
];
...
...
app/assets/javascripts/notes.js
View file @
588d7e8a
/* eslint-disable no-restricted-properties, func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, camelcase, no-unused-expressions, quotes, max-len, one-var, one-var-declaration-per-line, default-case, prefer-template, consistent-return, no-alert, no-return-assign, no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new, brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow, newline-per-chained-call, no-useless-escape
, radix
*/
/* eslint-disable no-restricted-properties, func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-use-before-define, camelcase, no-unused-expressions, quotes, max-len, one-var, one-var-declaration-per-line, default-case, prefer-template, consistent-return, no-alert, no-return-assign, no-param-reassign, prefer-arrow-callback, no-else-return, comma-dangle, no-new, brace-style, no-lonely-if, vars-on-top, no-unused-vars, no-sequences, no-shadow, newline-per-chained-call, no-useless-escape */
/* global Flash */
/* global GLForm */
/* global Autosave */
...
...
@@ -917,7 +917,7 @@
};
Notes
.
prototype
.
updateNotesCount
=
function
(
updateCount
)
{
return
this
.
notesCountBadge
.
text
(
parseInt
(
this
.
notesCountBadge
.
text
())
+
updateCount
);
return
this
.
notesCountBadge
.
text
(
parseInt
(
this
.
notesCountBadge
.
text
()
,
10
)
+
updateCount
);
};
Notes
.
prototype
.
resolveDiscussion
=
function
()
{
...
...
app/assets/javascripts/project_new.js
View file @
588d7e8a
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-vars, one-var, no-underscore-dangle, prefer-template, no-else-return, prefer-arrow-callback,
radix,
max-len */
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, no-unused-vars, one-var, no-underscore-dangle, prefer-template, no-else-return, prefer-arrow-callback, max-len */
(
function
()
{
var
bind
=
function
(
fn
,
me
)
{
return
function
()
{
return
fn
.
apply
(
me
,
arguments
);
};
};
...
...
@@ -57,11 +57,11 @@
$repoAccessLevel
.
off
(
'change'
)
.
on
(
'change'
,
function
()
{
var
selectedVal
=
parseInt
(
$repoAccessLevel
.
val
());
var
selectedVal
=
parseInt
(
$repoAccessLevel
.
val
()
,
10
);
this
.
$repoSelects
.
each
(
function
()
{
var
$this
=
$
(
this
);
var
repoSelectVal
=
parseInt
(
$this
.
val
());
var
repoSelectVal
=
parseInt
(
$this
.
val
()
,
10
);
$this
.
find
(
'option'
).
show
();
...
...
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