| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181 |
- {
- "ecmaFeatures": {
- "arrowFunctions": true,
- "binaryLiterals": true,
- "blockBindings": true,
- "classes": true,
- "defaultParams": true,
- "destructuring": true,
- "forOf": true,
- "generators": true,
- "globalReturn": true,
- "jsx": true,
- "modules": true,
- "objectLiteralComputedProperties": true,
- "objectLiteralDuplicatProperties": true,
- "objectLiteralShorthandMethods": true,
- "objectLiteralShorthandProperties": true,
- "octalLiterals": true,
- "regexUFlag": true,
- "regexYFlag": true,
- "restParams": true,
- "spread": true,
- "superInFunctions": true,
- "templateStrings": true,
- "unicodeCodePointEscapes": true
- },
-
- "env": {
- "browser": true,
- "es6": true,
- "node": true
- },
-
- "plugins": [
- "react"
- ],
-
- "rules": {
- "accessor-pairs": 2,
- "array-bracket-spacing": 2,
- "arrow-spacing": [2, { "before": true, "after": true }],
- "block-spacing": [2, "always"],
- "brace-style": [2, "stroustrup", { "allowSingleLine": true }],
- "camelcase": [2, { "properties": "always" }],
- "comma-dangle": 2,
- "comma-spacing": [2, { "before": false, "after": true }],
- "comma-style": [2, "last"],
- "computed-property-spacing": [2, "never"],
- "consistent-return": 2,
- "consistent-this": [2, "self"],
- "curly": [2, "multi-line"],
- "dot-location": [2, "property"],
- "eol-last": 2,
- "eqeqeq": 2,
- "generator-star-spacing": [2, { "before": false, "after": true }],
- "handle-callback-err": 2,
- "indent": [2, 2, { "SwitchCase": 1 }],
- "jsx-quotes": [2, "prefer-single"],
- "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
- "linebreak-style": [2, "unix"],
- "new-cap": 2,
- "new-parens": 2,
- "no-caller": 2,
- "no-class-assign": 2,
- "no-cond-assign": 2,
- "no-const-assign": 2,
- "no-constant-condition": 2,
- "no-control-regex": 2,
- "no-debugger": 2,
- "no-delete-var": 2,
- "no-dupe-args": 2,
- "no-dupe-class-members": 2,
- "no-dupe-keys": 2,
- "no-duplicate-case": 2,
- "no-else-return": 2,
- "no-empty": 2,
- "no-empty-character-class": 2,
- "no-eq-null": 2,
- "no-eval": 2,
- "no-ex-assign": 2,
- "no-extend-native": 2,
- "no-extra-bind": 2,
- "no-extra-boolean-cast": 2,
- "no-extra-semi": 2,
- "no-floating-decimal": 2,
- "no-func-assign": 2,
- "no-implicit-coercion": 2,
- "no-implied-eval": 2,
- "no-inner-declarations": 2,
- "no-invalid-regexp": 2,
- "no-invalid-this": 2,
- "no-irregular-whitespace": 2,
- "no-iterator": 2,
- "no-labels": 2,
- "no-lone-blocks": 2,
- "no-mixed-spaces-and-tabs": 2,
- "no-multi-spaces": 2,
- "no-multiple-empty-lines": 2,
- "no-native-reassign": 2,
- "no-negated-in-lhs": 2,
- "no-nested-ternary": 2,
- "no-new": 2,
- "no-new-func": 2,
- "no-new-object": 2,
- "no-new-wrappers": 2,
- "no-obj-calls": 2,
- "no-octal": 2,
- "no-param-reassign": 2,
- "no-process-env": 2,
- "no-proto": 2,
- "no-redeclare": 2,
- "no-regex-spaces": 2,
- "no-script-url": 2,
- "no-self-compare": 2,
- "no-sequences": 2,
- "no-spaced-func": 2,
- "no-sparse-arrays": 2,
- "no-this-before-super": 2,
- "no-throw-literal": 2,
- "no-trailing-spaces": 2,
- "no-undefined": 2,
- "no-underscore-dangle": 2,
- "no-unexpected-multiline": 2,
- "no-unneeded-ternary": 2,
- "no-unreachable": 2,
- "no-unused-expressions": 2,
- "no-unused-vars": 2,
- "no-useless-call": 2,
- "no-var": 2,
- "no-void": 2,
- "no-with": 2,
- "object-curly-spacing": [2, "always", { "objectsInObjects": true }],
- "object-shorthand": 2,
- "operator-linebreak": [2, "after"],
- "padded-blocks": [2, "never"],
- "prefer-arrow-callback": 2,
- "prefer-spread": 2,
- "prefer-template": 2,
- "quotes": [2, "single", "avoid-escape"],
- "radix": 2,
- "react/display-name": 2,
- "react/jsx-boolean-value": 2,
- "react/jsx-closing-bracket-location": 2,
- "react/jsx-curly-spacing": 2,
- "react/jsx-indent-props": [2, 2],
- "react/jsx-max-props-per-line": 2,
- "react/jsx-no-duplicate-props": 2,
- "react/jsx-no-undef": 2,
- "react/jsx-sort-prop-types": 2,
- "react/jsx-sort-props": 2,
- "react/jsx-uses-react": 2,
- "react/jsx-uses-vars": 2,
- "react/no-danger": 2,
- "react/no-did-mount-set-state": [2, 'allow-in-func'],
- "react/no-did-update-set-state": 2,
- "react/no-direct-mutation-state": 2,
- "react/no-multi-comp": 2,
- "react/no-unknown-property": 2,
- "react/prop-types": 2,
- "react/react-in-jsx-scope": 2,
- "react/require-extension": 2,
- "react/self-closing-comp": 2,
- "react/sort-comp": 2,
- "react/wrap-multilines": 2,
- "require-yield": 2,
- "semi": 2,
- "semi-spacing": [2, { "before": false, "after": true }],
- "space-after-keywords": [2, "always"],
- "space-before-blocks": [2, "always"],
- "space-before-function-paren": [2, "never"],
- "space-in-parens": [2, "never"],
- "space-infix-ops": 2,
- "space-return-throw-case": 2,
- "space-unary-ops": [2, { "words": true, "nonwords": false }],
- "spaced-comment": 2,
- "use-isnan": 2,
- "valid-typeof": 2,
- "vars-on-top": 2,
- "wrap-iife": 2
- }
- }
|