-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
48 lines (47 loc) · 1.22 KB
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
const vitestFiles = ["app/**/__tests__/**/*", "app/**/*.{spec,test}.*"];
module.exports = {
extends: [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"prettier",
],
plugins: ["simple-import-sort"],
rules: {
"@typescript-eslint/consistent-type-imports": [
"warn",
{
prefer: "type-imports",
disallowTypeAnnotations: true,
fixStyle: "inline-type-imports",
},
],
"simple-import-sort/imports": [
"warn",
{
groups: [
["^\\u0000", "^(react|react-dom)", "^node:", "^@?\\w", "^", "^\\."],
],
},
],
"simple-import-sort/exports": "warn",
"import/no-duplicates": ["warn", { "prefer-inline": false }],
},
overrides: [
{
extends: ["@remix-run/eslint-config/jest-testing-library"],
files: vitestFiles,
rules: {
"testing-library/no-await-sync-events": "off",
"jest-dom/prefer-in-document": "off",
},
// we're using vitest which has a very similar API to jest
// (so the linting plugins work nicely), but it means we have to explicitly
// set the jest version.
settings: {
jest: {
version: 28,
},
},
},
],
};