Skip to content

Commit

Permalink
feat(eslint): add new rules since July
Browse files Browse the repository at this point in the history
  • Loading branch information
vvo committed Sep 1, 2016
1 parent d40461d commit 6f07294
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,14 +45,15 @@ module.exports = {
"no-inner-declarations": ["error"],
"no-invalid-regexp": ["error"],
"no-irregular-whitespace": ["error"],
"no-negated-in-lhs": ["error"],
"no-obj-calls": ["error"],
"no-prototype-builtins": ["error"],
"no-regex-spaces": ["error"],
"no-template-curly-in-string": ["error"],
"no-sparse-arrays": ["error"],
"no-unexpected-multiline": ["error"],
"no-unreachable": ["error"],
"no-unsafe-finally": ["error"],
"no-unsafe-negation": ["error"],
"use-isnan": ["error"],
"valid-jsdoc": ["error"],
"valid-typeof": ["error"],
Expand All @@ -62,6 +63,7 @@ module.exports = {
"accessor-pairs": ["error"],
"array-callback-return": ["error"],
"block-scoped-var": ["error"],
"class-methods-use-this": ["off"],
"complexity": ["error"],
"consistent-return": ["error"],
"curly": ["off"],
Expand All @@ -83,6 +85,7 @@ module.exports = {
"no-extra-label": ["error"],
"no-fallthrough": ["error"],
"no-floating-decimal": ["error"],
"no-global-assign": ["error"],
"no-implicit-coercion": ["error", {"string": false}],
"no-implicit-globals": ["error"],
"no-implied-eval": ["error"],
Expand All @@ -94,7 +97,6 @@ module.exports = {
"no-magic-numbers": ["off"],
"no-multi-spaces": ["error"],
"no-multi-str": ["error"],
"no-native-reassign": ["error"],
"no-new": ["error"],
"no-new-func": ["error"],
"no-new-wrappers": ["error"],
Expand Down Expand Up @@ -166,6 +168,7 @@ module.exports = {
"computed-property-spacing": ["error"],
"consistent-this": ["error"],
"eol-last": ["error"],
"func-call-spacing": ["error"],
"func-names": ["off"],
"func-style": ["off"],
"id-blacklist": ["off"],
Expand All @@ -182,6 +185,7 @@ module.exports = {
"max-lines": ["off"],
"max-nested-callbacks": ["error"],
"max-params": ["error", 5],
"multiline-ternary": ["off"],
"max-statements": ["off"],
"max-statements-per-line": ["off"],
"new-cap": ["error"],
Expand All @@ -202,7 +206,7 @@ module.exports = {
"no-new-object": ["error"],
"no-plusplus": ["off"],
"no-restricted-syntax": ["off"],
"no-spaced-func": ["error"],
"no-tabs": ["error"],
"no-ternary": ["off"],
"no-trailing-spaces": ["error"],
"no-underscore-dangle": ["off"],
Expand All @@ -221,6 +225,7 @@ module.exports = {
"require-jsdoc": ["off"],
"semi": ["error"],
"semi-spacing": ["error"],
"sort-keys": ["off"],
"sort-vars": ["off"],
"space-before-blocks": ["off"],
"space-before-function-paren": ["off"],
Expand Down Expand Up @@ -260,6 +265,7 @@ module.exports = {
"require-yield": ["error"],
"rest-spread-spacing": ["error"],
"sort-imports": ["off"],
"symbol-description": ["error"],
"template-curly-spacing": ["error"],
"yield-star-spacing": ["error"],

Expand Down

0 comments on commit 6f07294

Please sign in to comment.