-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.eslintrc.js
97 lines (92 loc) · 2.14 KB
/
.eslintrc.js
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import payloadEsLintConfig from "@payloadcms/eslint-config";
import payloadPlugin from "@payloadcms/eslint-plugin";
export const defaultESLintIgnores = [
"**/.temp",
"**/.*", // ignore all dotfiles
"**/.git",
"**/.hg",
"**/.pnp.*",
"**/.svn",
"**/playwright.config.ts",
"**/jest.config.js",
"**/tsconfig.tsbuildinfo",
"**/README.md",
"**/eslint.config.js",
"**/payload-types.ts",
"**/dist/",
"**/.yarn/",
"**/build/",
"**/node_modules/",
"**/temp/",
];
/** @typedef {import('eslint').Linter.FlatConfig} */
let FlatConfig;
export const rootParserOptions = {
sourceType: "module",
ecmaVersion: "latest",
projectService: {
maximumDefaultProjectFileMatchCount_THIS_WILL_SLOW_DOWN_LINTING: 40,
allowDefaultProject: ["scripts/*.ts", "*.js", "*.mjs", "*.spec.ts", "*.d.ts"],
},
};
/** @type {FlatConfig[]} */
export const rootEslintConfig = [
...payloadEsLintConfig,
{
ignores: [
...defaultESLintIgnores,
"plugins/eslint-*/**",
"test/live-preview/next-app",
"plugins/**/*.spec.tsx",
"plugins/**/*.test.tsx",
"ui/**/*.spec.tsx",
"ui/**/*.test.tsx",
"templates/**",
],
},
{
plugins: {
payload: payloadPlugin,
},
rules: {
"payload/no-jsx-import-statements": "warn",
"payload/no-relative-monorepo-imports": "error",
"payload/no-imports-from-exports-dir": "error",
"payload/no-imports-from-self": "error",
},
},
{
files: ["./**/*.ts"],
rules: {
"@typescript-eslint/no-unused-vars": "off",
"no-console": "off",
"operator-linebreak": ["error", "before"],
"perfectionist/sort-object-types": "off",
"perfectionist/sort-objects": "off",
},
},
];
export default [
...rootEslintConfig,
{
languageOptions: {
parserOptions: {
...rootParserOptions,
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
{
files: ["plugins/eslint-config/**/*.ts"],
rules: {
"perfectionist/sort-objects": "off",
},
},
{
files: ["templates/vercel-postgres/**"],
rules: {
"no-restricted-exports": "off",
},
},
];