-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy patheslint.config.mjs
More file actions
79 lines (73 loc) · 1.55 KB
/
eslint.config.mjs
File metadata and controls
79 lines (73 loc) · 1.55 KB
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
// eslint.config.mjs
import antfu from '@antfu/eslint-config';
import nextPlugin from '@next/eslint-plugin-next';
import perfectionist from 'eslint-plugin-perfectionist';
const ignoreFiles = [
'**/commitlint.config.cjs',
'**/.temp',
'**/.*', // ignore all dotfiles
'**/.git',
'**/.hg',
'**/.pnp.*',
'**/.svn',
'**/playwright.config.ts',
'**/jest.config.js',
'**/tsconfig.tsbuildinfo',
'**/README.md',
'**/payload-types.ts',
'**/dist/',
'**/.yarn/',
'**/build/',
'**/node_modules/**',
'**/temp/',
'./dev/app/(payload)/admin/importMap.js',
'./dev/next-env.d.ts',
];
export default antfu(
{
// Code style
stylistic: {
semi: true,
},
typescript: true,
// Configuration preferences
lessOpinionated: true,
// Ignored paths
ignores: ignoreFiles,
isInEditor: true,
nextjs: true,
react: true,
},
{
rules: {
...nextPlugin.configs.recommended.rules,
...nextPlugin.configs['core-web-vitals'].rules,
},
plugins: { '@next/next': nextPlugin },
},
{
plugins: {
perfectionist,
},
rules: {
'perfectionist/sort-imports': ['error', {
type: 'line-length',
order: 'asc',
groups: [
['builtin', 'external'],
['internal', 'parent', 'sibling', 'index'],
'unknown',
],
}],
},
},
{
rules: {
'antfu/imports/order': 'off',
'import/order': 'off',
'sort-imports': 'off',
'ts/ban-ts-comment': 'off',
'unused-imports/no-unused-imports': ['error'],
},
},
);