-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy path.eslintrc.cjs
56 lines (51 loc) · 1.37 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
49
50
51
52
53
54
55
56
const { globSync } = require("glob");
let packages = globSync("packages/*/", {});
// get files in packages
const noExtraneousOverrides = packages.map((entry) => {
return {
files: `${entry}**/*`,
rules: {
"import/no-extraneous-dependencies": [
"error",
{
packageDir: [__dirname, entry],
},
],
},
};
});
const vitestFiles = [
"packages/**/__tests__/**/*",
"packages/**/*.{spec,test}.*",
];
/** @type {import('eslint').Linter.Config} */
module.exports = {
extends: [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"@remix-run/eslint-config/internal",
],
overrides: [
...noExtraneousOverrides,
{
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,
},
},
},
],
// Report unused `eslint-disable` comments.
reportUnusedDisableDirectives: true,
// Tell ESLint not to ignore dot-files, which are ignored by default.
ignorePatterns: ["!.*.js", "!.*.mjs", "!.*.cjs"],
};