-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
38 lines (38 loc) · 1003 Bytes
/
.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
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
extends: [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"prettier",
],
overrides: [
{
extends: ["@remix-run/eslint-config/jest-testing-library"],
files: ["app/**/__tests__/**/*", "app/**/*.{spec,test}.*"],
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,
},
},
},
],
rules: {
"@typescript-eslint/consistent-type-imports": [
"warn",
{
prefer: "type-imports",
disallowTypeAnnotations: true,
fixStyle: "inline-type-imports",
},
],
"@typescript-eslint/no-duplicate-imports": "warn",
},
};