|
| 1 | +{ |
| 2 | + // Configuration for JavaScript files |
| 3 | + "extends": [ |
| 4 | + "airbnb-base", |
| 5 | + "next/core-web-vitals", |
| 6 | + "plugin:prettier/recommended" |
| 7 | + ], |
| 8 | + "rules": { |
| 9 | + "prettier/prettier": [ |
| 10 | + "error", |
| 11 | + { |
| 12 | + "singleQuote": true |
| 13 | + } |
| 14 | + ] |
| 15 | + }, |
| 16 | + "overrides": [ |
| 17 | + // Configuration for TypeScript files |
| 18 | + { |
| 19 | + "files": ["**/*.ts", "**/*.tsx"], |
| 20 | + "plugins": ["@typescript-eslint", "unused-imports"], |
| 21 | + "extends": [ |
| 22 | + "airbnb-typescript", |
| 23 | + "next/core-web-vitals", |
| 24 | + "plugin:prettier/recommended" |
| 25 | + ], |
| 26 | + "parserOptions": { |
| 27 | + "project": "./tsconfig.json" |
| 28 | + }, |
| 29 | + "rules": { |
| 30 | + "prettier/prettier": [ |
| 31 | + "error", |
| 32 | + { |
| 33 | + "singleQuote": true |
| 34 | + } |
| 35 | + ], |
| 36 | + "react/destructuring-assignment": "off", // Vscode doesn't support automatically destructuring, it's a pain to add a new variable |
| 37 | + "jsx-a11y/anchor-is-valid": "off", // Next.js use his own internal link system |
| 38 | + "react/require-default-props": "off", // Allow non-defined react props as undefined |
| 39 | + "react/jsx-props-no-spreading": "off", // _app.tsx uses spread operator and also, react-hook-form |
| 40 | + "@next/next/no-img-element": "off", // We currently not using next/image because it isn't supported with SSG mode |
| 41 | + "import/order": [ |
| 42 | + "error", |
| 43 | + { |
| 44 | + "groups": ["builtin", "external", "internal"], |
| 45 | + "pathGroups": [ |
| 46 | + { |
| 47 | + "pattern": "react", |
| 48 | + "group": "external", |
| 49 | + "position": "before" |
| 50 | + } |
| 51 | + ], |
| 52 | + "pathGroupsExcludedImportTypes": ["react"], |
| 53 | + "newlines-between": "always", |
| 54 | + "alphabetize": { |
| 55 | + "order": "asc", |
| 56 | + "caseInsensitive": true |
| 57 | + } |
| 58 | + } |
| 59 | + ], |
| 60 | + "@typescript-eslint/comma-dangle": "off", // Avoid conflict rule between Eslint and Prettier |
| 61 | + "import/prefer-default-export": "off", // Named export is easier to refactor automatically |
| 62 | + "class-methods-use-this": "off", // _document.tsx use render method without `this` keyword |
| 63 | + "@typescript-eslint/no-unused-vars": "off", |
| 64 | + "unused-imports/no-unused-imports": "error", |
| 65 | + "unused-imports/no-unused-vars": [ |
| 66 | + "error", |
| 67 | + { "argsIgnorePattern": "^_" } |
| 68 | + ] |
| 69 | + } |
| 70 | + } |
| 71 | + ] |
| 72 | +} |
0 commit comments