|
| 1 | +/** |
| 2 | + * This is intended to be a basic starting point for linting in the Indie Stack. |
| 3 | + * It relies on recommended configs out of the box for simplicity, but you can |
| 4 | + * and should modify this configuration to best suit your team's needs. |
| 5 | + */ |
| 6 | + |
1 | 7 | /** @type {import('eslint').Linter.Config} */
|
2 | 8 | module.exports = {
|
3 | 9 | root: true,
|
4 |
| - extends: [ |
5 |
| - "@remix-run/eslint-config", |
6 |
| - "@remix-run/eslint-config/node", |
7 |
| - "@remix-run/eslint-config/jest-testing-library", |
8 |
| - "prettier", |
9 |
| - ], |
| 10 | + parserOptions: { |
| 11 | + ecmaVersion: "latest", |
| 12 | + sourceType: "module", |
| 13 | + ecmaFeatures: { |
| 14 | + jsx: true, |
| 15 | + }, |
| 16 | + }, |
10 | 17 | env: {
|
11 |
| - "cypress/globals": true, |
| 18 | + browser: true, |
| 19 | + commonjs: true, |
| 20 | + es6: true, |
12 | 21 | },
|
13 |
| - plugins: ["cypress"], |
14 |
| - // we're using vitest which has a very similar API to jest |
15 |
| - // (so the linting plugins work nicely), but it means we have to explicitly |
16 |
| - // set the jest version. |
17 |
| - settings: { |
18 |
| - jest: { |
19 |
| - version: 28, |
| 22 | + |
| 23 | + // Base config |
| 24 | + extends: ["eslint:recommended"], |
| 25 | + |
| 26 | + overrides: [ |
| 27 | + // React |
| 28 | + { |
| 29 | + files: ["**/*.{js,jsx,ts,tsx}"], |
| 30 | + plugins: ["react", "jsx-a11y"], |
| 31 | + extends: [ |
| 32 | + "plugin:react/recommended", |
| 33 | + "plugin:react/jsx-runtime", |
| 34 | + "plugin:jsx-a11y/recommended", |
| 35 | + "prettier", |
| 36 | + ], |
| 37 | + settings: { |
| 38 | + react: { |
| 39 | + version: "detect", |
| 40 | + }, |
| 41 | + formComponents: ["Form"], |
| 42 | + linkComponents: [ |
| 43 | + { name: "Link", linkAttribute: "to" }, |
| 44 | + { name: "NavLink", linkAttribute: "to" }, |
| 45 | + ], |
| 46 | + }, |
| 47 | + rules: { |
| 48 | + "react/jsx-no-leaked-render": [ |
| 49 | + "warn", |
| 50 | + { validStrategies: ["ternary"] }, |
| 51 | + ], |
| 52 | + }, |
20 | 53 | },
|
21 |
| - }, |
| 54 | + |
| 55 | + // Typescript |
| 56 | + { |
| 57 | + files: ["**/*.{ts,tsx}"], |
| 58 | + plugins: ["@typescript-eslint", "import"], |
| 59 | + parser: "@typescript-eslint/parser", |
| 60 | + settings: { |
| 61 | + "import/internal-regex": "^~/", |
| 62 | + "import/resolver": { |
| 63 | + node: { |
| 64 | + extensions: [".ts", ".tsx"], |
| 65 | + }, |
| 66 | + typescript: { |
| 67 | + alwaysTryTypes: true, |
| 68 | + }, |
| 69 | + }, |
| 70 | + }, |
| 71 | + extends: [ |
| 72 | + "plugin:@typescript-eslint/recommended", |
| 73 | + "plugin:@typescript-eslint/stylistic", |
| 74 | + "plugin:import/recommended", |
| 75 | + "plugin:import/typescript", |
| 76 | + "prettier", |
| 77 | + ], |
| 78 | + rules: { |
| 79 | + "import/order": [ |
| 80 | + "error", |
| 81 | + { |
| 82 | + alphabetize: { caseInsensitive: true, order: "asc" }, |
| 83 | + groups: ["builtin", "external", "internal", "parent", "sibling"], |
| 84 | + "newlines-between": "always", |
| 85 | + }, |
| 86 | + ], |
| 87 | + }, |
| 88 | + }, |
| 89 | + |
| 90 | + // Markdown |
| 91 | + { |
| 92 | + files: ["**/*.md"], |
| 93 | + plugins: ["markdown"], |
| 94 | + extends: ["plugin:markdown/recommended", "prettier"], |
| 95 | + }, |
| 96 | + |
| 97 | + // Jest/Vitest |
| 98 | + { |
| 99 | + files: ["**/*.test.{js,jsx,ts,tsx}"], |
| 100 | + plugins: ["jest", "jest-dom", "testing-library"], |
| 101 | + extends: [ |
| 102 | + "plugin:jest/recommended", |
| 103 | + "plugin:jest-dom/recommended", |
| 104 | + "plugin:testing-library/react", |
| 105 | + "prettier", |
| 106 | + ], |
| 107 | + env: { |
| 108 | + "jest/globals": true, |
| 109 | + }, |
| 110 | + settings: { |
| 111 | + jest: { |
| 112 | + // we're using vitest which has a very similar API to jest |
| 113 | + // (so the linting plugins work nicely), but it means we have to explicitly |
| 114 | + // set the jest version. |
| 115 | + version: 28, |
| 116 | + }, |
| 117 | + }, |
| 118 | + }, |
| 119 | + |
| 120 | + // Cypress |
| 121 | + { |
| 122 | + files: ["cypress/**/*.ts"], |
| 123 | + plugins: ["cypress"], |
| 124 | + extends: ["plugin:cypress/recommended", "prettier"], |
| 125 | + }, |
| 126 | + |
| 127 | + // Node |
| 128 | + { |
| 129 | + files: [".eslintrc.js", "mocks/**/*.js"], |
| 130 | + env: { |
| 131 | + node: true, |
| 132 | + }, |
| 133 | + }, |
| 134 | + ], |
22 | 135 | };
|
0 commit comments