Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ rules: # http://eslint.org/docs/rules/
no-useless-call: 1 # disallow unnecessary calls to `.call()` and `.apply()`
no-useless-concat: 1 # disallow unnecessary concatenation of literals or template literals
no-useless-escape: 1 # disallow unnecessary escape characters
no-useless-return: 1 # disallow redundant return statements
no-void: 1 # disallow `void` operators
no-warning-comments: 1 # disallow specified warning terms in comments
no-with: 2 # disallow `with` statements
Expand Down Expand Up @@ -163,6 +164,7 @@ rules: # http://eslint.org/docs/rules/
consistent-this: 0 # enforce consistent naming when capturing the current execution context
eol-last: 1 # enforce at least one newline at the end of files
func-call-spacing: 1 # require or disallow spacing between `function` identifiers and their invocations
func-name-matching: 1 # require function names to match the name of the variable or property to which they are assigned
func-names: 0 # enforce named `function` expressions
func-style: 0 # enforce the consistent use of either `function` declarations or expressions
id-blacklist: 0 # disallow specified identifiers
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "~3.6.1",
"eslint": "~3.9.0",
"mocha": "^3.0.0"
}
}