| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- {
- "extends": [
- "airbnb",
- "airbnb-typescript"
- ],
- "parser": "@typescript-eslint/parser",
- "overrides": [
- {
- "files": [
- "*.ts",
- "*.tsx"
- ],
- "parserOptions": {
- "project": "./tsconfig.json"
- }
- }
- ],
- "plugins": [
- "import",
- "react",
- "coriolis-web"
- ],
- "env": {
- "browser": true,
- "node": true
- },
- "globals": {},
- "ignorePatterns": [
- "*.svg",
- "*.png",
- "*.bash",
- "*.log",
- "*.jpg",
- "*.woff",
- "*.js",
- "*.snap",
- "src/**/test.tsx",
- "src/**/package.json"
- ],
- "rules": {
- "max-params": [
- "error",
- 3
- ],
- "coriolis-web/import-no-duplicate-name": "error",
- "react/function-component-definition": "off",
- "react/sort-comp": "off",
- "react/jsx-one-expression-per-line": "off",
- "@typescript-eslint/semi": [
- 2,
- "never"
- ],
- "arrow-parens": [
- 2,
- "as-needed"
- ],
- "no-console": "off",
- "react/require-default-props": "off",
- "class-methods-use-this": "off",
- "no-underscore-dangle": "off",
- "jsx-a11y/mouse-events-have-key-events": "off",
- "react/jsx-no-duplicate-props": "off",
- "no-nested-ternary": "off",
- "no-dupe-class-members": "off",
- "object-curly-spacing": [
- "error",
- "always"
- ],
- "no-throw-literal": "off",
- "@typescript-eslint/type-annotation-spacing": [
- "error",
- {
- "after": true
- }
- ],
- "react/state-in-constructor": "off",
- "react/destructuring-assignment": "off",
- "import/no-extraneous-dependencies": "off",
- "react/static-property-placement": "off",
- "react/no-danger": "off",
- "prefer-destructuring": "off",
- "import/no-cycle": "off",
- "@typescript-eslint/camelcase": "off",
- "react/jsx-props-no-spreading": "off",
- "max-classes-per-file": "off",
- "prefer-promise-reject-errors": "off",
- "import/prefer-default-export": "off",
- "no-param-reassign": "off",
- "max-len": [
- "error",
- {
- "code": 150,
- "ignoreTemplateLiterals": true,
- "ignoreStrings": true
- }
- ]
- }
- }
|