generated from ExpTechTW/Example
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheslint.config.mjs
87 lines (86 loc) · 1.79 KB
/
eslint.config.mjs
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
/* eslint-disable import-x/no-named-as-default-member */
import js from '@eslint/js';
import ts from 'typescript-eslint';
import stylistic from '@stylistic/eslint-plugin';
import next from '@next/eslint-plugin-next';
import tailwind from 'eslint-plugin-readable-tailwind';
import importX from 'eslint-plugin-import-x';
export default ts.config(
{
ignores: ['eslint.config.mjs'],
},
js.configs.recommended,
...ts.configs.recommendedTypeChecked,
stylistic.configs.customize({
arrowParens: true,
semi: true,
jsx: true,
flat: true,
}),
importX.flatConfigs.recommended,
importX.flatConfigs.typescript,
{
rules: {
'import-x/no-named-as-default-member': ['off'],
'import-x/order': [
'warn',
{
'groups': [
'builtin',
'external',
'internal',
['parent', 'sibling', 'index'],
'unknown',
'type',
],
'newlines-between': 'always',
},
],
'sort-imports': [
'warn',
{
allowSeparatedGroups: true,
},
],
},
},
{
languageOptions: {
parserOptions: {
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
{
plugins: {
'@next/next': next,
},
rules: {
...next.configs.recommended.rules,
...next.configs['core-web-vitals'].rules,
},
},
{
files: ['**/*.{jsx,tsx}'],
languageOptions: {
parserOptions: {
ecmaFeatures: {
jsx: true,
},
},
},
plugins: {
'readable-tailwind': tailwind,
},
rules: {
...tailwind.configs.warning.rules,
'readable-tailwind/multiline': [
'warn',
{
group: 'newLine',
},
],
},
},
);