graphql-engine/console/.eslintrc

179 lines
5.4 KiB
Plaintext
Raw Normal View History

{
2020-04-06 14:23:04 +03:00
"extends": ["airbnb", "prettier"],
2018-06-28 07:57:37 +03:00
"env": {
"browser": true,
"node": true,
"mocha": true
2018-06-28 07:57:37 +03:00
},
2020-04-06 14:23:04 +03:00
"parser": "babel-eslint",
2018-06-28 07:57:37 +03:00
"rules": {
"allowForLoopAfterthoughts": 0,
2018-06-28 07:57:37 +03:00
"react/no-multi-comp": 0,
"import/default": 0,
"import/no-duplicates": 0,
"import/named": 0,
"import/first": 0,
"import/namespace": 0,
"import/no-unresolved": 0,
"import/no-named-as-default": 2,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,
"import/prefer-default-export": 0,
"comma-dangle": 0,
"id-length": [1, { "min": 1, "properties": "never" }],
2020-04-06 14:23:04 +03:00
"indent": "off",
2018-06-28 07:57:37 +03:00
"no-console": 0,
"arrow-parens": 0,
"no-alert": 0,
"no-plusplus": 0,
"no-unsafe-negation": 0,
"no-loop-func": 0,
"no-lonely-if": 0,
"no-bitwise": 0,
"global-require": 0,
"no-param-reassign": 0,
"no-underscore-dangle": 0,
"no-useless-return": 0,
"no-restricted-syntax": 0,
"no-prototype-builtins": 0,
"array-callback-return": 0,
"no-useless-concat": 0,
"consistent-return": 0,
"class-methods-use-this": 0,
"arrow-body-style": 0,
"prefer-template": 0,
"prefer-spread": 0,
"object-shorthand": 0,
"camelcase": 0,
2018-06-28 07:57:37 +03:00
"object-curly-newline": 0,
"spaced-comment": 0,
"prefer-destructuring": ["error", { "object": false, "array": false }],
2018-06-28 07:57:37 +03:00
"prefer-rest-params": 0,
"function-paren-newline": 0,
"no-case-declarations": 0,
"no-restricted-globals": 0,
"no-unneeded-ternary": 0,
"no-mixed-operators": 0,
"no-return-assign": 0,
"operator-assignment": 0,
"strict": 0,
"react/jsx-no-duplicate-props": 0,
"react/jsx-filename-extension": 0,
"react/jsx-curly-brace-presence": 0,
"react/forbid-prop-types": 0,
"react/require-default-props": 0,
"react/no-unused-prop-types": 0,
"react/no-string-refs": 0,
"react/no-unused-state": 0,
"react/no-array-index-key": 0,
"react/jsx-no-bind": 0,
"react/prop-types": 0,
"react/prefer-stateless-function": 0,
"react/no-unescaped-entities": 0,
"react/sort-comp": 0,
2020-04-06 14:23:04 +03:00
"react/jsx-indent": 0,
2018-06-28 07:57:37 +03:00
"jsx-a11y/click-events-have-key-events": 0,
"jsx-a11y/no-static-element-interactions": 0,
"jsx-a11y/no-noninteractive-element-interactions": 0,
"jsx-a11y/label-has-for": 0,
"jsx-a11y/anchor-is-valid": 0,
"jsx-a11y/lang": 0,
"jsx-a11y/alt-text": 0,
"jsx-a11y/no-autofocus": 0,
"max-len": 0,
"no-continue": 0,
"no-new": 0,
2020-02-19 12:59:20 +03:00
"eqeqeq": 0,
2020-04-06 14:23:04 +03:00
"no-nested-ternary": 0
2018-06-28 07:57:37 +03:00
},
"plugins": ["react", "import", "@typescript-eslint/eslint-plugin"],
2018-06-28 07:57:37 +03:00
"settings": {
"import/resolve": {
"moduleDirectory": ["node_modules", "src"]
}
},
"globals": {
"__DEVELOPMENT__": true,
"__CLIENT__": true,
"__SERVER__": true,
"__DISABLE_SSR__": true,
"__DEVTOOLS__": true,
"socket": true,
"webpackIsomorphicTools": true,
"CONSOLE_ASSET_VERSION": true
},
"overrides": [
{
2020-04-06 14:23:04 +03:00
"extends": [
"plugin:@typescript-eslint/recommended",
"airbnb",
"prettier"
],
"parser": "@typescript-eslint/parser",
"files": ["*.ts", "*.tsx"],
"rules": {
"jsx-a11y/label-has-for": [
0,
{
"required": {
"some": ["nesting", "id"]
}
}
],
2020-04-06 14:23:04 +03:00
"import/extensions": 0,
"import/prefer-default-export": "off",
2020-04-06 14:23:04 +03:00
"react/prop-types": "off",
"react/jsx-filename-extension": 0,
"no-unused-vars": "off",
"camelcase": "off",
2020-04-06 14:23:04 +03:00
"@typescript-eslint/no-unused-vars": 2,
"@typescript-eslint/indent": 0,
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/prefer-interface": 0,
"@typescript-eslint/no-namespace": "off",
"@typescript-eslint/camelcase": 0,
"@typescript-eslint/explicit-member-accessibility": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-object-literal-type-assertion": "off",
"@typescript-eslint/no-empty-interface": "off",
"@typescript-eslint/no-parameter-properties": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-var-requires": "off",
"@typescript-eslint/no-useless-constructor": "error",
"@typescript-eslint/no-unused-expressions": ["error"],
"@typescript-eslint/no-empty-function": "off",
/**
* Disable things that are checked by Typescript
*/
"import/no-unresolved": 0,
"getter-return": "off",
"no-dupe-args": "off",
"no-dupe-keys": "off",
"no-unreachable": "off",
"valid-typeof": "off",
"no-const-assign": "off",
"no-new-symbol": "off",
"no-this-before-super": "off",
"no-undef": "off",
"no-dupe-class-members": "off",
"no-redeclare": "off",
"no-useless-constructor": "off",
"no-unused-expressions": "off",
"no-console": "off",
"prefer-destructuring": "off",
"no-plusplus": "off",
"jsx-a11y/anchor-is-valid": "off",
"jsx-a11y/click-events-have-key-events": "off",
"jsx-a11y/no-static-element-interactions": "off",
"no-new": "off",
"no-nested-ternary": "off",
"jsx-a11y/interactive-supports-focus": "off",
"no-restricted-properties": "off",
"react/no-danger": "off",
"react/no-array-index-key": "off",
"no-case-declarations": 0
}
}
]
2018-06-28 07:57:37 +03:00
}