{ "env": { "es6": true, "node": true }, "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "rules": { "comma-dangle": [2, "never"], "no-cond-assign": [2, "except-parens"], "no-console": 0, "no-constant-condition": 2, "no-control-regex": 1, "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": [1, "functions"], "no-extra-semi": 1, "no-func-assign": 2, "no-inner-declarations": 2, "no-invalid-regexp": 2, "no-irregular-whitespace": 2, "no-negated-in-lhs": 2, "no-obj-calls": 2, "no-regex-spaces": 1, "no-sparse-arrays": 2, "no-unexpected-multiline": 2, "no-unreachable": 2, "use-isnan": 2, "valid-typeof": 2, "accessor-pairs": [1, { getWithoutSet: true }], "array-callback-return": 1, "block-scoped-var": 2, "complexity": 0, "consistent-return": 2, "curly": [2, "all"], "default-case": 1, "dot-location": [1, "property"], "dot-notation": [1, { allowKeywords: true }], "eqeqeq": [2, "allow-null"], "guard-for-in": 1, "no-caller": 2, "no-case-declarations": 1, "no-div-regex": 1, "no-else-return": 2, "no-empty-function": 1, "no-empty-pattern": 2, "no-eq-null": 0, "no-eval": 2, "no-extend-native": 1, "no-extra-bind": 2, "no-extra-label": 1, "no-fallthrough": 1, "no-floating-decimal": 1, "no-implicit-coercion": 2, "no-implicit-globals": 0, "no-implied-eval": 2, "no-invalid-this": 1, "no-iterator": 2, "no-labels": 0, "no-lone-blocks": 2, "no-loop-func": 2, "no-magic-numbers": 0, "no-multi-spaces": 2, "no-multi-str": 2, "no-native-reassign": 2, "no-new": 1, "no-new-func": 2, "no-new-wrappers": 2, "no-octal": 2, "no-octal-escape": 2, "no-proto": 2, "no-redeclare": 2, "no-return-assign": 2, "no-self-assign": 1, "no-self-compare": 2, "no-sequences": 2, "no-throw-literal": 2, "no-unmodified-loop-condition": 2, "no-unused-expressions": [2, { allowShortCircuit: true, allowTernary: true }], "no-unused-labels": 2, "no-useless-call": 2, "no-useless-concat": 1, "no-useless-escape": 2, "no-void": 2, "no-warning-comments": 0, "no-with": 2, "vars-on-top": 0, "wrap-iife": [2, "any"], "yoda": [2, "never"], /** * Strict mode */ "strict": [2, "global"], /** * Variables */ "init-declarations": 0, "no-catch-shadow": 1, "no-delete-var": 2, "no-label-var": 1, "no-shadow": 1, "no-shadow-restricted-names": 2, "no-undef": 2, "no-undef-init": 1, "no-undefined": 0, "no-unused-vars": [2, { vars: "local", args: "after-used" }], /** * Stylistic Issues */ "array-bracket-spacing": [1, "never"], "block-spacing": [1, "always"], "brace-style": [1, "1tbs", { allowSingleLine: true } ], "camelcase": 0, "comma-spacing": [1, { before: false, after: true }], "comma-style": [1, "last"], "computed-property-spacing": [1, "never"], "consistent-this": [1, "self"], "eol-last": [2, "unix"], "func-style": [2, "declaration"], "key-spacing": [1, { beforeColon: false, afterColon: true }], "keyword-spacing": 1, "linebreak-style": [2, "unix"], "max-len": [1, 120, 4], "max-nested-callbacks": [2, 4], "max-params": [1, 5], "max-statements": 0, "max-statements-per-line": [2, { max: 1 }], "new-cap": [2, { newIsCap: true }], "new-parens": 2, "newline-per-chained-call": 1, "no-array-constructor": 2, "no-bitwise": 1, "no-continue": 0, "no-inline-comments": 0, "no-lonely-if": 1, "no-mixed-spaces-and-tabs": 2, "no-multiple-empty-lines": [1, { max: 2 }], "no-negated-condition": 1, "no-nested-ternary": 2, "no-new-object": 2, "no-plusplus": 0, "no-restricted-syntax": 0, "no-spaced-func": 1, "no-ternary": 0, "no-trailing-spaces": [1, { skipBlankLines: true }], "no-underscore-dangle": 0, "no-unneeded-ternary": 2, "no-whitespace-before-property": 2, "one-var": [1, { uninitialized: "never", initialized: "never" }], "one-var-declaration-per-line": 0, "operator-assignment": [1, "always"], "operator-linebreak": [1, "after"], "require-jsdoc": 0, "semi": [2, "always"], "semi-spacing": [1, { before: false, after: true }], "sort-imports": 0, "sort-vars": 0, "space-before-blocks": [1, { functions: "always", keywords: "always" }], "space-before-function-paren": [1, { anonymous: "always", named: "never" }], "space-in-parens": [1, "never"], "space-infix-ops": 2, "space-unary-ops": [2, { words: true, nonwords: false }], "spaced-comment": [1, "always", { exceptions: ["-", "+"], markers: ["=", "!"] }], "wrap-regex": 0 }, "indent": [2, 4, { SwitchCase: 1 }], "quotes": [2, "double", "avoid-escape"], "quote-props": [1, "as-needed", { keywords: true, numbers: true }], "func-names": 0, "id-length": [1, { min: 1, max: 40 }], "no-param-reassign": 0, "no-use-before-define": [2, "nofunc"], "lines-around-comment": [1, { beforeBlockComment: true, afterBlockComment: false, beforeLineComment: false, afterLineComment: false, allowBlockStart: true, allowBlockEnd: true }], "newline-after-var": 0, "newline-before-return": 0, "object-curly-spacing": [1, "always"], "padded-blocks": 0, "max-depth": [1, 6], "valid-jsdoc": [1, { prefer: { "return": "return" }, requireParamDescription: false, requireReturnDescription: false, requireReturn: false }], "arrow-body-style": [2, "as-needed"], "arrow-spacing": [2, { before: true, after: true }], "arrow-parens": [2, "always"], "constructor-super": 2, "generator-star-spacing": [2, { before: false, after: true }], "no-class-assign": 2, "no-confusing-arrow": 2, "no-const-assign": 2, "no-dupe-class-members": 2, "no-duplicate-imports": 2, "no-new-symbol": 2, "no-restricted-imports": 0, "no-this-before-super": 2, "no-useless-constructor": 2, "no-var": 0, "object-shorthand": [2, "properties"], "prefer-arrow-callback": 1, "prefer-const": 1, "prefer-reflect": 0, "prefer-rest-params": 1, "prefer-spread": 0, "prefer-template": 1, "require-yield": 2, "template-curly-spacing": [2, "never"], "yield-star-spacing": [1, "after"] }