| 1234567891011121314151617181920212223242526272829 |
- {
- "parser": "@typescript-eslint/parser",
- "parserOptions": {
- "project": "./tsconfig.json"
- },
- "extends": [
- "airbnb",
- "airbnb-typescript",
- "prettier",
- "plugin:@typescript-eslint/eslint-recommended",
- "plugin:@typescript-eslint/recommended"
- ],
- "plugins": ["prettier"],
- "rules": {
- "prettier/prettier": ["error"]
- },
- "overrides": [
- {
- "files": ["*.ts", "*.tsx"],
- "rules": {
- "jsx-a11y/no-static-element-interactions": "off",
- "jsx-a11y/click-events-have-key-events": "off",
- "react/no-array-index-key": "off"
- },"parserOptions": {
- "project": ["**/tsconfig.json"]
- }
- }
- ]
- }
|