-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheslint.config.js
More file actions
110 lines (102 loc) · 2.24 KB
/
Copy patheslint.config.js
File metadata and controls
110 lines (102 loc) · 2.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
import pluginJs from "@eslint/js";
import globals from "globals";
import tseslint from "typescript-eslint";
import pluginReact from "eslint-plugin-react";
import pluginReactHooks from "eslint-plugin-react-hooks";
import pluginImport from "eslint-plugin-import-x";
import pluginJsxA11y from "eslint-plugin-jsx-a11y";
const importOrderPathGroups = [
{
pattern: "{react,react-dom/**}",
group: "external",
position: "before",
},
{
pattern: "@mui/**",
group: "external",
position: "before",
},
{
pattern: "lodash/**",
group: "external",
position: "before",
},
{
pattern: "typescript-eslint",
group: "external",
position: "after",
},
{
pattern: "eslint-plugin-react**",
group: "external",
position: "after",
},
{
pattern: "eslint-plugin-*",
group: "external",
position: "after",
},
{
pattern: "contexts/**",
group: "internal",
position: "after",
},
{
pattern: "hooks/**",
group: "internal",
position: "after",
},
{
pattern: "utils/**",
group: "internal",
position: "after",
},
{
pattern: "type-fest",
group: "type",
},
];
/**
* @type {import('eslint').Linter.Config[]}
*/
export default [
{ ignores: ["dist/**", "build/**"] },
{ files: ["**/*.{js,mjs,cjs,ts,jsx,tsx}"] },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
pluginReact.configs.flat.recommended,
pluginReact.configs.flat["jsx-runtime"],
pluginJsxA11y.flatConfigs.recommended,
pluginReactHooks.configs.flat.recommended,
pluginImport.flatConfigs.recommended,
{
languageOptions: {
ecmaVersion: "latest",
globals: globals.browser,
sourceType: "module",
},
settings: {
react: { version: "detect" },
"import-x/resolver": { typescript: true },
},
rules: {
"import-x/order": [
"error",
{
alphabetize: { order: "asc" },
groups: [
"builtin",
"external",
"internal",
"parent",
"sibling",
"type",
],
"newlines-between": "always",
pathGroups: importOrderPathGroups,
pathGroupsExcludedImportTypes: ["builtin"],
},
],
},
},
];