2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-09 13:10:27 +00:00
steffen-dotfiles/eslintrc

195 lines
5.3 KiB
Plaintext
Raw Normal View History

{
"env": {
"browser": true,
2015-07-08 14:25:10 +00:00
"es6": true,
"node": true
},
2015-07-08 14:25:10 +00:00
"ecmaFeatures": {
"modules": true
},
"rules": {
2015-08-08 11:32:24 +00:00
"comma-dangle": [ 2, "never" ],
"no-cond-assign": 2,
"no-console": 0,
2015-08-08 11:32:24 +00:00
"no-constant-condition": 2,
"no-control-regex": 2,
"no-debugger": 2,
"no-dupe-args": 2,
"no-dupe-keys": 2,
"no-duplicate-case": 2,
"no-empty": 2,
"no-empty-character-class": 2,
"no-ex-assign": 2,
"no-extra-boolean-cast": 2,
"no-extra-parens": 0,
"no-extra-semi": 2,
"no-func-assign": 2,
"no-inner-declarations": [ 2, "functions" ],
"no-invalid-regexp": 2,
"no-irregular-whitespace": 2,
"no-negated-in-lhs": 2,
"no-obj-calls": 2,
"no-regex-spaces": 2,
"no-sparse-arrays": 2,
"no-unexpected-multiline": 2,
"no-unreachable": 2,
"use-isnan": 2,
"valid-jsdoc": 0,
"valid-typeof": 2,
2015-08-08 11:32:24 +00:00
"accessor-pairs": 0,
"block-scoped-var": 2,
2015-08-08 11:32:24 +00:00
"complexity": [ 0, 11 ],
"consistent-return": 2,
"curly": [ 2, "all" ],
"default-case": 2,
"dot-location": [ 2, "property" ],
"dot-notation": [ 2, { "allowKeywords": true } ],
"eqeqeq": 2,
"guard-for-in": 0,
"no-alert": 2,
"no-caller": 2,
"no-div-regex": 2,
2015-08-08 11:32:24 +00:00
"no-else-return": 2,
"no-empty-label": 0,
"no-eq-null": 2,
"no-eval": 2,
"no-extend-native": 2,
"no-extra-bind": 2,
"no-fallthrough": 1,
"no-floating-decimal": 2,
2015-08-08 11:32:24 +00:00
"no-implicit-coercion": 2,
"no-implied-eval": 2,
"no-invalid-this": 0,
"no-iterator": 2,
"no-labels": 2,
"no-lone-blocks": 1,
"no-loop-func": 2,
"no-multi-spaces": 2,
"no-multi-str": 2,
"no-native-reassign": 1,
"no-new": 2,
"no-new-func": 2,
"no-new-wrappers": 2,
"no-octal": 2,
"no-octal-escape": 1,
"no-param-reassign": 0,
"no-process-env": 1,
"no-proto": 2,
"no-redeclare": 2,
"no-return-assign": 2,
"no-script-url": 2,
"no-self-compare": 2,
2015-08-08 11:32:24 +00:00
"no-sequences": 1,
"no-throw-literal": 1,
"no-unused-expressions": 2,
"no-useless-call": 2,
"no-void": 2,
2015-08-08 11:32:24 +00:00
"no-warning-comments": 0,
"no-with": 2,
"radix": 0,
"vars-on-top": 2,
2015-08-08 11:32:24 +00:00
"wrap-iife": 2,
"yoda": [ 2, "never" ],
"strict": 0,
"init-declarations": 0,
"no-catch-shadow": 0,
"no-delete-var": 2,
"no-label-var": 2,
"no-shadow": 2,
"no-shadow-restricted-names": 2,
"no-undef": 2,
"no-undef-init": 2,
"no-undefined": 2,
"no-unused-vars": [ 2, { "vars": "all", "args": "after-used" } ],
"no-use-before-define": 2,
"callback-return": 0,
"handle-callback-err": 0,
"no-mixed-requires": [ 1, true ],
"no-new-require": 1,
"no-path-concat": 0,
"no-process-exit": 0,
"no-restricted-modules": 0,
"no-sync": 0,
2015-07-08 14:25:10 +00:00
"array-bracket-spacing": [ 2, "always" ],
2015-01-11 20:42:59 +00:00
"brace-style": [ 2, "1tbs", { "allowSingleLine": false } ],
2015-08-08 11:32:24 +00:00
"camelcase": [ 2, { "properties": "always" } ],
"comma-spacing": [ 2, { "before": false, "after": true } ],
2015-01-11 20:42:59 +00:00
"comma-style": [ 2, "last" ],
2015-08-08 11:32:24 +00:00
"computed-property-spacing": [ 2, "never" ],
2015-01-11 20:42:59 +00:00
"consistent-this": [ 1, "that" ],
2015-08-08 11:32:24 +00:00
"eol-last": 2,
"func-names": 1,
2015-01-11 20:42:59 +00:00
"func-style": [ 2, "expression" ],
2015-08-08 11:32:24 +00:00
"id-length": 0,
"indent": [ 2, 2, { "SwitchCase": 1 } ],
"key-spacing": [ 2, { "beforeColon": false, "afterColon": true } ],
"lines-around-comment": [ 2, { "beforeBlockComment": true, "beforeLineComment": true, "allowBlockStart": true } ],
2015-07-08 14:25:10 +00:00
"linebreak-style": [ 2, "unix" ],
2015-01-11 20:42:59 +00:00
"max-nested-callbacks": [ 1, 4 ],
2015-08-08 11:32:24 +00:00
"new-cap": 2,
"new-parens": 2,
2015-07-08 14:25:10 +00:00
"newline-after-var": [ 1, "always" ],
2015-08-08 11:32:24 +00:00
"no-array-constructor": 2,
"no-continue": 1,
"no-inline-comments": 0,
2015-01-11 20:42:59 +00:00
"no-lonely-if": 1,
2015-08-08 11:32:24 +00:00
"no-mixed-spaces-and-tabs": 2,
2015-01-11 20:42:59 +00:00
"no-multiple-empty-lines": [ 1, { "max": 2 } ],
"no-nested-ternary": 2,
2015-08-08 11:32:24 +00:00
"no-new-object": 2,
"no-spaced-func": 2,
"no-ternary": 0,
"no-trailing-spaces": 2,
"no-underscore-dangle": 1,
"no-unneeded-ternary": 2,
2015-07-08 14:25:10 +00:00
"object-curly-spacing": [ 2, "always" ],
"one-var": [ 2, "never" ],
2015-01-11 20:42:59 +00:00
"operator-assignment": [ 2, "always" ],
2015-07-08 14:25:10 +00:00
"operator-linebreak": [ 2, "after" ],
2015-08-08 11:32:24 +00:00
"padded-blocks": 0,
"quote-props": [ 2, "as-needed" ],
2015-01-11 20:42:59 +00:00
"quotes": [ 2, "single", "avoid-escape" ],
2015-08-08 11:32:24 +00:00
"id-match": 0,
"semi-spacing": [ 2, { "before": false, "after": true } ],
"semi": [ 2, "always" ],
"sort-vars": 0,
2015-07-08 14:25:10 +00:00
"space-after-keywords": [ 2, "always" ],
2015-01-11 20:42:59 +00:00
"space-before-blocks": [ 2, "always" ],
2015-07-08 14:25:10 +00:00
"space-before-function-paren": [ 2, "always" ],
2015-01-11 20:42:59 +00:00
"space-in-parens": [ 2, "never" ],
2015-08-08 11:32:24 +00:00
"space-infix-ops": 2,
"space-return-throw-case": 2,
"space-unary-ops": [ 2, { "words": true, "nonwords": false } ],
2015-07-08 14:25:10 +00:00
"spaced-comment": [ 2, "always" ],
"wrap-regex": 2,
2015-08-08 11:32:24 +00:00
"arrow-parens": 1,
"arrow-spacing": [ 1, { "before": true, "after": true } ],
"constructor-super": 0,
"generator-star-spacing": [ 1, { "before": true, "after": true} ],
"no-class-assign": 1,
"no-const-assign": 1,
"no-this-before-super": 0,
"no-var": 1,
2015-07-08 14:25:10 +00:00
"object-shorthand": [ 1, "always" ],
2015-08-08 11:32:24 +00:00
"prefer-const": 1,
"prefer-spread": 1,
"prefer-reflect": 0,
"require-yield": 1,
2015-07-08 14:25:10 +00:00
2015-01-11 20:42:59 +00:00
"max-depth": [ 1, 4 ],
2015-08-08 11:32:24 +00:00
"max-len": [ 1, 120, 2 ],
"max-params": [ 0, 3 ],
"max-statements": [ 0, 10 ],
"no-bitwise": 2,
"no-plusplus": 2
}
}