|
| 1 | +module.exports = { |
| 2 | + root: true, |
| 3 | + parser: "@typescript-eslint/parser", |
| 4 | + plugins: ["@typescript-eslint", "prettier"], |
| 5 | + parserOptions: { |
| 6 | + project: "./tsconfig.json", |
| 7 | + }, |
| 8 | + env: { |
| 9 | + node: true, |
| 10 | + }, |
| 11 | + extends: [ |
| 12 | + "next/core-web-vitals", |
| 13 | + "plugin:@typescript-eslint/recommended", |
| 14 | + "airbnb", |
| 15 | + "airbnb-typescript", |
| 16 | + "plugin:prettier/recommended", |
| 17 | + ], |
| 18 | + rules: { |
| 19 | + // 'React' must be in scope when using JSX 에러 지우기(Next.js) |
| 20 | + "react/react-in-jsx-scope": "off", |
| 21 | + // ts파일에서 tsx구문 허용(Next.js) |
| 22 | + "@typescript-eslint/no-use-before-define": "off", |
| 23 | + "react/jsx-filename-extension": [1, { extensions: [".ts", ".tsx"] }], // should add ".ts" if typescript project |
| 24 | + "no-unused-vars": "off", |
| 25 | + "no-param-reassign": "off", |
| 26 | + "@typescript-eslint/no-unused-vars": "warn", |
| 27 | + "jsx-a11y/click-events-have-key-events": 0, |
| 28 | + "jsx-a11y/no-static-element-interactions": 0, |
| 29 | + "import/no-cycle": 0, |
| 30 | + "react/require-default-props": 0, |
| 31 | + "react/jsx-props-no-spreading": 0, |
| 32 | + "no-empty-interface": 0, |
| 33 | + "import/prefer-default-export": "off", |
| 34 | + "jsx-a11y/label-has-associated-control": [ |
| 35 | + 2, |
| 36 | + { |
| 37 | + labelAttributes: ["htmlFor"], |
| 38 | + }, |
| 39 | + ], |
| 40 | + "react/no-array-index-key": 0, |
| 41 | + "consistent-return": 0, |
| 42 | + }, |
| 43 | +}; |
0 commit comments