Skip to content

Commit

Permalink
#36: off none autofixed rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Aleksey Legotkin committed May 15, 2018
1 parent 1d51d03 commit 2a0ab02
Showing 1 changed file with 73 additions and 13 deletions.
86 changes: 73 additions & 13 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,19 +12,79 @@
"node": true,
"browser": false
},
"extends": "airbnb-base",
"extends": "airbnb-base",
"rules": {
"no-underscore-dangle": 0,
"no-plusplus": 0,
"no-mixed-operators": 0,
"no-param-reassign": 0,
"no-bitwise": 0,
"consistent-return": 0,
"class-methods-use-this": 0,
"import/no-extraneous-dependencies": 0,
"prefer-const": 0,
"no-octal": 0,
"no-undef": 0,
"no-unused-expressions": 0,
"no-shadow": 0,
"func-names": 0,
"block-scoped-var": 0,
"max-len": 0,
"one-var": 0,
"prefer-destructuring": 0,
"prefer-rest-params": 0,
"no-restricted-syntax": 0,
"no-continue": 0,
"no-use-before-define": 0,
"no-var": 0,
"no-multi-assign": 0,
"no-useless-escape": 0,
"no-unused-vars": 0,
"no-tabs": 0,
"global-require": 0,
"no-throw-literal": 0,
"strict": 0,
"prefer-spread": 0,
"radix": 0,
"no-buffer-constructor": 0,
"no-void": 0,
"no-sequences": 0,
"camelcase": 0,
"no-console": 0,
"no-prototype-builtins": 0,
"no-new-wrappers": 0,
"no-redeclare": 0,
"no-dupe-keys": 0,
"no-new": 0,
"no-return-assign": 0,
"no-restricted-properties": 0,
"array-callback-return": 0,
"no-unreachable": 0,
"no-cond-assign": 0,
"brace-style": 0,
"no-restricted-globals": 0,
"import/no-dynamic-require": 0,
"import/no-unresolved": 0,
"guard-for-in": 0,
"no-lone-blocks": 0,
"no-new-object": 0,
"no-empty": 0,
"no-lonely-if": 0,
"default-case": 0,
"no-extend-native": 0,
"no-control-regex": 0,
"no-inner-declarations": 0,
"new-cap": 0,
"no-constant-condition": 0,
"no-new-require": 0,
"no-loop-func": 0,
"function-paren-newline": 0,
"getter-retur": 0,
"getter-return": 0,
"vars-on-top": 0
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "script",
"ecmaFeatures": {
"modules": false,
"defaultParams": true,
"classes": true,
"arrowFunctions": true,
"blockBindings": true,
"forOf": true,
"spread": true,
"templateStrings": true
}
"ecmaVersion": 2018,
"sourceType": "script"
}
}

0 comments on commit 2a0ab02

Please sign in to comment.