Made a few changes to .eslintrc, just to make it a bit more comfortable
This commit is contained in:
parent
4e5ecf0109
commit
0a57f05390
|
@ -50,7 +50,7 @@
|
||||||
/**
|
/**
|
||||||
* Possible errors
|
* Possible errors
|
||||||
*/
|
*/
|
||||||
"comma-dangle": [2, "always"], // http://eslint.org/docs/rules/comma-dangle
|
"comma-dangle": [2, "always-multiline"], // http://eslint.org/docs/rules/comma-dangle
|
||||||
"no-cond-assign": [2, "always"], // http://eslint.org/docs/rules/no-cond-assign
|
"no-cond-assign": [2, "always"], // http://eslint.org/docs/rules/no-cond-assign
|
||||||
"no-console": 0, // http://eslint.org/docs/rules/no-console
|
"no-console": 0, // http://eslint.org/docs/rules/no-console
|
||||||
"no-debugger": 1, // http://eslint.org/docs/rules/no-debugger
|
"no-debugger": 1, // http://eslint.org/docs/rules/no-debugger
|
||||||
|
@ -82,11 +82,11 @@
|
||||||
"dot-notation": [2, { // http://eslint.org/docs/rules/dot-notation
|
"dot-notation": [2, { // http://eslint.org/docs/rules/dot-notation
|
||||||
"allowKeywords": true
|
"allowKeywords": true
|
||||||
}],
|
}],
|
||||||
"eqeqeq": 2, // http://eslint.org/docs/rules/eqeqeq
|
"eqeqeq": ["error", "smart"], // http://eslint.org/docs/rules/eqeqeq
|
||||||
"guard-for-in": 2, // http://eslint.org/docs/rules/guard-for-in
|
"guard-for-in": 2, // http://eslint.org/docs/rules/guard-for-in
|
||||||
"no-caller": 2, // http://eslint.org/docs/rules/no-caller
|
"no-caller": 2, // http://eslint.org/docs/rules/no-caller
|
||||||
"no-else-return": 2, // http://eslint.org/docs/rules/no-else-return
|
"no-else-return": 2, // http://eslint.org/docs/rules/no-else-return
|
||||||
"no-eq-null": 2, // http://eslint.org/docs/rules/no-eq-null
|
"no-eq-null": 0, // http://eslint.org/docs/rules/no-eq-null
|
||||||
"no-eval": 2, // http://eslint.org/docs/rules/no-eval
|
"no-eval": 2, // http://eslint.org/docs/rules/no-eval
|
||||||
"no-extend-native": 2, // http://eslint.org/docs/rules/no-extend-native
|
"no-extend-native": 2, // http://eslint.org/docs/rules/no-extend-native
|
||||||
"no-extra-bind": 2, // http://eslint.org/docs/rules/no-extra-bind
|
"no-extra-bind": 2, // http://eslint.org/docs/rules/no-extra-bind
|
||||||
|
|
Loading…
Reference in New Issue