-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
130 lines (128 loc) · 3.79 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
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:perfectionist/recommended-natural",
"prettier",
],
ignorePatterns: [
".git",
"build",
"dist",
"docs",
"node_modules",
"storybook-static",
"tmp",
],
overrides: [
{
env: {
node: true,
},
files: [".eslintrc.{js,cjs}"],
parserOptions: {
sourceType: "script",
},
},
{
files: [
"**/*.css.ts",
"**/*stories.tsx",
"vitest.config.ts",
"vite.config.ts",
"commitlint.config.js",
],
rules: {
"jsdoc/require-jsdoc": "off",
},
},
],
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: "latest",
sourceType: "module",
},
plugins: ["@typescript-eslint", "react", "jsdoc"],
rules: {
"@typescript-eslint/consistent-type-imports": [
"error",
{ prefer: "type-imports" },
],
"jsdoc/require-jsdoc": [
"error",
{
checkGetters: true,
contexts: [
"ArrowFunctionExpression",
"FunctionDeclaration",
"FunctionExpression",
"MethodDefinition",
"Property",
"TSDeclareFunction",
"TSEnumDeclaration",
"TSInterfaceDeclaration",
"TSMethodSignature",
"TSPropertySignature",
// "TSTypeAliasDeclaration",
"VariableDeclaration",
],
enableFixer: false,
publicOnly: true,
require: {
ArrowFunctionExpression: true,
ClassDeclaration: true,
ClassExpression: true,
FunctionDeclaration: true,
FunctionExpression: true,
MethodDefinition: true,
},
},
],
"no-console": ["error", { allow: ["warn", "error", "info"] }],
"no-restricted-imports": [
"error",
{
paths: [
{
message:
"Use deep import, e.g. `@fortawesome/pro-solid-svg-icons/faCheck`",
name: "@fortawesome/pro-solid-svg-icons",
},
{
message:
"Use deep import, e.g. `@fortawesome/pro-duotone-svg-icons/faCheck`",
name: "@fortawesome/pro-duotone-svg-icons",
},
{
message:
"Use deep import, e.g. `@fortawesome/free-brands-svg-icons/faCheck`",
name: "@fortawesome/free-brands-svg-icons",
},
],
},
],
// "jsdoc/require-description-complete-sentence": "error",
"perfectionist/sort-objects": [
"error",
{
"partition-by-comment": "Group:**",
},
],
"react/display-name": "off",
"react/function-component-definition": "error",
"react/prop-types": "off",
},
settings: {
react: {
version: "detect",
},
},
};