@greenberry/linting-config 0.1.77 → 0.1.78
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/eslint.config.d.ts +2 -3
- package/dist/eslint.config.d.ts.map +1 -1
- package/dist/eslint.config.js +179 -189
- package/dist/eslint.config.js.map +1 -1
- package/package.json +1 -1
package/dist/eslint.config.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
declare const config: import("eslint").Linter.Config[];
|
|
1
|
+
declare const _default: import("@typescript-eslint/utils/ts-eslint").FlatConfig.ConfigArray;
|
|
2
|
+
export default _default;
|
|
4
3
|
//# sourceMappingURL=eslint.config.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslint.config.d.ts","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eslint.config.d.ts","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":""}
|
package/dist/eslint.config.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
+
import eslint from "@eslint/js";
|
|
1
2
|
import nextPlugin from "@next/eslint-plugin-next";
|
|
2
|
-
import tsPlugin from "@typescript-eslint/eslint-plugin";
|
|
3
|
-
import tsParser from "@typescript-eslint/parser";
|
|
4
3
|
import importPlugin from "eslint-plugin-import";
|
|
5
4
|
import jsxA11yPlugin from "eslint-plugin-jsx-a11y";
|
|
6
5
|
import perfectionistPlugin from "eslint-plugin-perfectionist";
|
|
@@ -10,198 +9,189 @@ import reactCompilerPlugin from "eslint-plugin-react-compiler";
|
|
|
10
9
|
import reactHooksPlugin from "eslint-plugin-react-hooks";
|
|
11
10
|
import reactHooksExtraPlugin from "eslint-plugin-react-hooks-extra";
|
|
12
11
|
import unicornPlugin from "eslint-plugin-unicorn";
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
{
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
ecmaFeatures: {
|
|
23
|
-
jsx: true,
|
|
24
|
-
},
|
|
25
|
-
project: "./tsconfig.json",
|
|
12
|
+
import tseslint from "typescript-eslint";
|
|
13
|
+
export default tseslint.config(eslint.configs.recommended, ...tseslint.configs.recommended, ...tseslint.configs.strict, ...tseslint.configs.stylistic, {
|
|
14
|
+
files: ["**/*.{js,mjs,cjs,jsx,ts,tsx}"],
|
|
15
|
+
languageOptions: {
|
|
16
|
+
parserOptions: {
|
|
17
|
+
ecmaVersion: "latest",
|
|
18
|
+
sourceType: "module",
|
|
19
|
+
ecmaFeatures: {
|
|
20
|
+
jsx: true,
|
|
26
21
|
},
|
|
22
|
+
project: "./tsconfig.json",
|
|
27
23
|
},
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
},
|
|
46
|
-
},
|
|
47
|
-
react: {
|
|
48
|
-
version: "detect",
|
|
24
|
+
},
|
|
25
|
+
plugins: {
|
|
26
|
+
react: reactPlugin,
|
|
27
|
+
"react-hooks": reactHooksPlugin,
|
|
28
|
+
"react-hooks-extra": reactHooksExtraPlugin,
|
|
29
|
+
import: importPlugin,
|
|
30
|
+
unicorn: unicornPlugin,
|
|
31
|
+
perfectionist: perfectionistPlugin,
|
|
32
|
+
"@next/next": nextPlugin,
|
|
33
|
+
"jsx-a11y": jsxA11yPlugin,
|
|
34
|
+
prettier: prettierPlugin,
|
|
35
|
+
"react-compiler": reactCompilerPlugin,
|
|
36
|
+
},
|
|
37
|
+
settings: {
|
|
38
|
+
"import/resolver": {
|
|
39
|
+
typescript: {
|
|
40
|
+
project: "./tsconfig.json",
|
|
49
41
|
},
|
|
50
42
|
},
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
// @ts-ignore
|
|
54
|
-
...reactPlugin.configs["jsx-runtime"].rules,
|
|
55
|
-
...reactHooksPlugin.configs.recommended.rules,
|
|
56
|
-
...jsxA11yPlugin.configs.recommended.rules,
|
|
57
|
-
...nextPlugin.configs.recommended.rules,
|
|
58
|
-
...tsPlugin.configs["recommended"].rules,
|
|
59
|
-
// TypeScript rules
|
|
60
|
-
"@typescript-eslint/array-type": ["error", { default: "array" }],
|
|
61
|
-
"@typescript-eslint/ban-ts-comment": "off",
|
|
62
|
-
"@typescript-eslint/consistent-type-assertions": "error",
|
|
63
|
-
"@typescript-eslint/explicit-member-accessibility": "error",
|
|
64
|
-
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
65
|
-
"@typescript-eslint/no-explicit-any": "error",
|
|
66
|
-
"@typescript-eslint/no-inferrable-types": "off",
|
|
67
|
-
"@typescript-eslint/no-unused-vars": ["error", { vars: "all" }],
|
|
68
|
-
"@typescript-eslint/no-use-before-define": [
|
|
69
|
-
"error",
|
|
70
|
-
{ functions: false },
|
|
71
|
-
],
|
|
72
|
-
"@typescript-eslint/prefer-readonly": "error",
|
|
73
|
-
"@typescript-eslint/no-non-null-assertion": "off",
|
|
74
|
-
"@typescript-eslint/consistent-type-imports": [
|
|
75
|
-
"error",
|
|
76
|
-
{
|
|
77
|
-
prefer: "type-imports",
|
|
78
|
-
disallowTypeAnnotations: false,
|
|
79
|
-
},
|
|
80
|
-
],
|
|
81
|
-
// React rules
|
|
82
|
-
"react/jsx-boolean-value": "error",
|
|
83
|
-
"react/jsx-curly-brace-presence": [
|
|
84
|
-
"error",
|
|
85
|
-
{ props: "never", children: "never" },
|
|
86
|
-
],
|
|
87
|
-
"react/jsx-filename-extension": [
|
|
88
|
-
"error",
|
|
89
|
-
{ extensions: [".jsx", ".tsx"] },
|
|
90
|
-
],
|
|
91
|
-
"react/no-array-index-key": "error",
|
|
92
|
-
"react/no-unused-prop-types": "error",
|
|
93
|
-
"react/no-unused-state": "error",
|
|
94
|
-
"react/void-dom-elements-no-children": "error",
|
|
95
|
-
"react-hooks/exhaustive-deps": "error",
|
|
96
|
-
"react/no-object-type-as-default-prop": "error",
|
|
97
|
-
"react-compiler/react-compiler": "error",
|
|
98
|
-
// Import rules
|
|
99
|
-
"import/extensions": [
|
|
100
|
-
"error",
|
|
101
|
-
"ignorePackages",
|
|
102
|
-
{
|
|
103
|
-
js: "always",
|
|
104
|
-
jsx: "always",
|
|
105
|
-
ts: "always",
|
|
106
|
-
tsx: "always",
|
|
107
|
-
scss: "always",
|
|
108
|
-
},
|
|
109
|
-
],
|
|
110
|
-
"import/prefer-default-export": "off",
|
|
111
|
-
"import/no-extraneous-dependencies": [
|
|
112
|
-
"error",
|
|
113
|
-
{
|
|
114
|
-
devDependencies: [
|
|
115
|
-
"**/*.stories.@(js|jsx|ts|tsx|mdx)",
|
|
116
|
-
"**/*.test.@(js|jsx|ts|tsx)",
|
|
117
|
-
"**/*.spec.@(js|jsx|ts|tsx)",
|
|
118
|
-
"**/*.config.@(js|ts)",
|
|
119
|
-
"**/*.setup.@(js|ts)",
|
|
120
|
-
"*.json",
|
|
121
|
-
],
|
|
122
|
-
},
|
|
123
|
-
],
|
|
124
|
-
// Unicorn rules
|
|
125
|
-
"unicorn/catch-error-name": "error",
|
|
126
|
-
"unicorn/error-message": "error",
|
|
127
|
-
"unicorn/escape-case": "error",
|
|
128
|
-
"unicorn/explicit-length-check": "error",
|
|
129
|
-
"unicorn/new-for-builtins": "error",
|
|
130
|
-
"unicorn/no-instanceof-builtins": "error",
|
|
131
|
-
"unicorn/no-abusive-eslint-disable": "error",
|
|
132
|
-
"unicorn/no-console-spaces": "error",
|
|
133
|
-
"unicorn/no-for-loop": "error",
|
|
134
|
-
"unicorn/no-hex-escape": "error",
|
|
135
|
-
"unicorn/no-new-buffer": "error",
|
|
136
|
-
"unicorn/no-unreadable-array-destructuring": "error",
|
|
137
|
-
"unicorn/no-zero-fractions": "error",
|
|
138
|
-
"unicorn/number-literal-case": "error",
|
|
139
|
-
"unicorn/prefer-includes": "error",
|
|
140
|
-
"unicorn/prefer-query-selector": "error",
|
|
141
|
-
"unicorn/prefer-type-error": "error",
|
|
142
|
-
"unicorn/throw-new-error": "error",
|
|
143
|
-
// Next.js specific rules
|
|
144
|
-
"@next/next/no-html-link-for-pages": "error",
|
|
145
|
-
"@next/next/no-img-element": "error",
|
|
146
|
-
"@next/next/no-unwanted-polyfillio": "error",
|
|
147
|
-
"@next/next/no-sync-scripts": "error",
|
|
148
|
-
"@next/next/no-script-component-in-head": "error",
|
|
149
|
-
"@next/next/google-font-display": "error",
|
|
150
|
-
"@next/next/google-font-preconnect": "error",
|
|
151
|
-
"@next/next/next-script-for-ga": "error",
|
|
152
|
-
"@next/next/no-typos": "error",
|
|
153
|
-
"@next/next/no-duplicate-head": "error",
|
|
154
|
-
// Perfectionist rules
|
|
155
|
-
"perfectionist/sort-jsx-props": [
|
|
156
|
-
"error",
|
|
157
|
-
{
|
|
158
|
-
type: "alphabetical",
|
|
159
|
-
ignoreCase: true,
|
|
160
|
-
customGroups: [
|
|
161
|
-
{ groupName: "key", elementNamePattern: "^key$" },
|
|
162
|
-
{ groupName: "ref", elementNamePattern: "^ref$" },
|
|
163
|
-
{ groupName: "id", elementNamePattern: "^id$" },
|
|
164
|
-
{ groupName: "className", elementNamePattern: "^className$" },
|
|
165
|
-
],
|
|
166
|
-
groups: ["key", "ref", "id", "unknown", "className"],
|
|
167
|
-
},
|
|
168
|
-
],
|
|
169
|
-
// React Hooks Extra rules
|
|
170
|
-
"react-hooks-extra/no-direct-set-state-in-use-effect": "warn",
|
|
171
|
-
"react-hooks-extra/no-unnecessary-use-prefix": "warn",
|
|
172
|
-
"react-hooks-extra/prefer-use-state-lazy-initialization": "warn",
|
|
173
|
-
"react-hooks-extra/no-unnecessary-use-callback": "warn",
|
|
174
|
-
"react-hooks-extra/no-unnecessary-use-memo": "warn",
|
|
175
|
-
// Other rules
|
|
176
|
-
"jsx-a11y/alt-text": "error",
|
|
177
|
-
"jsx-a11y/media-has-caption": "warn",
|
|
178
|
-
"no-unused-expressions": "error",
|
|
179
|
-
"no-inner-declarations": "error",
|
|
180
|
-
"no-process-env": "error",
|
|
181
|
-
"no-restricted-syntax": [
|
|
182
|
-
"error",
|
|
183
|
-
{
|
|
184
|
-
selector: "ForInStatement",
|
|
185
|
-
message: "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.",
|
|
186
|
-
},
|
|
187
|
-
{
|
|
188
|
-
selector: "LabeledStatement",
|
|
189
|
-
message: "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.",
|
|
190
|
-
},
|
|
191
|
-
{
|
|
192
|
-
selector: "WithStatement",
|
|
193
|
-
message: "`with` is disallowed in strict mode because it makes code impossible to predict and optimize.",
|
|
194
|
-
},
|
|
195
|
-
],
|
|
196
|
-
"no-console": ["warn", { allow: ["warn", "error", "info"] }],
|
|
197
|
-
curly: ["error", "all"],
|
|
198
|
-
// Prettier integration
|
|
199
|
-
"prettier/prettier": "error",
|
|
43
|
+
react: {
|
|
44
|
+
version: "detect",
|
|
200
45
|
},
|
|
201
46
|
},
|
|
202
|
-
{
|
|
203
|
-
|
|
47
|
+
rules: {
|
|
48
|
+
// Include recommended rules
|
|
49
|
+
...reactPlugin.configs["jsx-runtime"].rules,
|
|
50
|
+
...reactHooksPlugin.configs.recommended.rules,
|
|
51
|
+
...jsxA11yPlugin.configs.recommended.rules,
|
|
52
|
+
...nextPlugin.configs.recommended.rules,
|
|
53
|
+
// TypeScript rules
|
|
54
|
+
"@typescript-eslint/array-type": ["error", { default: "array" }],
|
|
55
|
+
"@typescript-eslint/ban-ts-comment": "off",
|
|
56
|
+
"@typescript-eslint/consistent-type-assertions": "error",
|
|
57
|
+
"@typescript-eslint/explicit-member-accessibility": "error",
|
|
58
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
59
|
+
"@typescript-eslint/no-explicit-any": "error",
|
|
60
|
+
"@typescript-eslint/no-inferrable-types": "off",
|
|
61
|
+
"@typescript-eslint/no-unused-vars": ["error", { vars: "all" }],
|
|
62
|
+
"@typescript-eslint/no-use-before-define": [
|
|
63
|
+
"error",
|
|
64
|
+
{ functions: false },
|
|
65
|
+
],
|
|
66
|
+
"@typescript-eslint/prefer-readonly": "error",
|
|
67
|
+
"@typescript-eslint/no-non-null-assertion": "off",
|
|
68
|
+
"@typescript-eslint/consistent-type-imports": [
|
|
69
|
+
"error",
|
|
70
|
+
{
|
|
71
|
+
prefer: "type-imports",
|
|
72
|
+
disallowTypeAnnotations: false,
|
|
73
|
+
},
|
|
74
|
+
],
|
|
75
|
+
// React rules
|
|
76
|
+
"react/jsx-boolean-value": "error",
|
|
77
|
+
"react/jsx-curly-brace-presence": [
|
|
78
|
+
"error",
|
|
79
|
+
{ props: "never", children: "never" },
|
|
80
|
+
],
|
|
81
|
+
"react/jsx-filename-extension": [
|
|
82
|
+
"error",
|
|
83
|
+
{ extensions: [".jsx", ".tsx"] },
|
|
84
|
+
],
|
|
85
|
+
"react/no-array-index-key": "error",
|
|
86
|
+
"react/no-unused-prop-types": "error",
|
|
87
|
+
"react/no-unused-state": "error",
|
|
88
|
+
"react/void-dom-elements-no-children": "error",
|
|
89
|
+
"react-hooks/exhaustive-deps": "error",
|
|
90
|
+
"react/no-object-type-as-default-prop": "error",
|
|
91
|
+
"react-compiler/react-compiler": "error",
|
|
92
|
+
// Import rules
|
|
93
|
+
"import/extensions": [
|
|
94
|
+
"error",
|
|
95
|
+
"ignorePackages",
|
|
96
|
+
{
|
|
97
|
+
js: "always",
|
|
98
|
+
jsx: "always",
|
|
99
|
+
ts: "always",
|
|
100
|
+
tsx: "always",
|
|
101
|
+
scss: "always",
|
|
102
|
+
},
|
|
103
|
+
],
|
|
104
|
+
"import/prefer-default-export": "off",
|
|
105
|
+
"import/no-extraneous-dependencies": [
|
|
106
|
+
"error",
|
|
107
|
+
{
|
|
108
|
+
devDependencies: [
|
|
109
|
+
"**/*.stories.@(js|jsx|ts|tsx|mdx)",
|
|
110
|
+
"**/*.test.@(js|jsx|ts|tsx)",
|
|
111
|
+
"**/*.spec.@(js|jsx|ts|tsx)",
|
|
112
|
+
"**/*.config.@(js|ts)",
|
|
113
|
+
"**/*.setup.@(js|ts)",
|
|
114
|
+
"*.json",
|
|
115
|
+
],
|
|
116
|
+
},
|
|
117
|
+
],
|
|
118
|
+
// Unicorn rules
|
|
119
|
+
"unicorn/catch-error-name": "error",
|
|
120
|
+
"unicorn/error-message": "error",
|
|
121
|
+
"unicorn/escape-case": "error",
|
|
122
|
+
"unicorn/explicit-length-check": "error",
|
|
123
|
+
"unicorn/new-for-builtins": "error",
|
|
124
|
+
"unicorn/no-instanceof-builtins": "error",
|
|
125
|
+
"unicorn/no-abusive-eslint-disable": "error",
|
|
126
|
+
"unicorn/no-console-spaces": "error",
|
|
127
|
+
"unicorn/no-for-loop": "error",
|
|
128
|
+
"unicorn/no-hex-escape": "error",
|
|
129
|
+
"unicorn/no-new-buffer": "error",
|
|
130
|
+
"unicorn/no-unreadable-array-destructuring": "error",
|
|
131
|
+
"unicorn/no-zero-fractions": "error",
|
|
132
|
+
"unicorn/number-literal-case": "error",
|
|
133
|
+
"unicorn/prefer-includes": "error",
|
|
134
|
+
"unicorn/prefer-query-selector": "error",
|
|
135
|
+
"unicorn/prefer-type-error": "error",
|
|
136
|
+
"unicorn/throw-new-error": "error",
|
|
137
|
+
// Next.js specific rules
|
|
138
|
+
"@next/next/no-html-link-for-pages": "error",
|
|
139
|
+
"@next/next/no-img-element": "error",
|
|
140
|
+
"@next/next/no-unwanted-polyfillio": "error",
|
|
141
|
+
"@next/next/no-sync-scripts": "error",
|
|
142
|
+
"@next/next/no-script-component-in-head": "error",
|
|
143
|
+
"@next/next/google-font-preconnect": "error",
|
|
144
|
+
"@next/next/next-script-for-ga": "error",
|
|
145
|
+
"@next/next/no-typos": "error",
|
|
146
|
+
"@next/next/no-duplicate-head": "error",
|
|
147
|
+
// Perfectionist rules
|
|
148
|
+
"perfectionist/sort-jsx-props": [
|
|
149
|
+
"error",
|
|
150
|
+
{
|
|
151
|
+
type: "alphabetical",
|
|
152
|
+
ignoreCase: true,
|
|
153
|
+
customGroups: [
|
|
154
|
+
{ groupName: "key", elementNamePattern: "^key$" },
|
|
155
|
+
{ groupName: "ref", elementNamePattern: "^ref$" },
|
|
156
|
+
{ groupName: "id", elementNamePattern: "^id$" },
|
|
157
|
+
{ groupName: "className", elementNamePattern: "^className$" },
|
|
158
|
+
],
|
|
159
|
+
groups: ["key", "ref", "id", "unknown", "className"],
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
// React Hooks Extra rules
|
|
163
|
+
"react-hooks-extra/no-direct-set-state-in-use-effect": "warn",
|
|
164
|
+
"react-hooks-extra/no-unnecessary-use-prefix": "warn",
|
|
165
|
+
"react-hooks-extra/prefer-use-state-lazy-initialization": "warn",
|
|
166
|
+
"react-hooks-extra/no-unnecessary-use-callback": "warn",
|
|
167
|
+
"react-hooks-extra/no-unnecessary-use-memo": "warn",
|
|
168
|
+
// Other rules
|
|
169
|
+
"jsx-a11y/alt-text": "error",
|
|
170
|
+
"jsx-a11y/media-has-caption": "warn",
|
|
171
|
+
"no-unused-expressions": "error",
|
|
172
|
+
"no-inner-declarations": "error",
|
|
173
|
+
"no-process-env": "error",
|
|
174
|
+
"no-restricted-syntax": [
|
|
175
|
+
"error",
|
|
176
|
+
{
|
|
177
|
+
selector: "ForInStatement",
|
|
178
|
+
message: "for..in loops iterate over the entire prototype chain, which is virtually never what you want. Use Object.{keys,values,entries}, and iterate over the resulting array.",
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
selector: "LabeledStatement",
|
|
182
|
+
message: "Labels are a form of GOTO; using them makes code confusing and hard to maintain and understand.",
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
selector: "WithStatement",
|
|
186
|
+
message: "`with` is disallowed in strict mode because it makes code impossible to predict and optimize.",
|
|
187
|
+
},
|
|
188
|
+
],
|
|
189
|
+
"no-console": ["warn", { allow: ["warn", "error", "info"] }],
|
|
190
|
+
curly: ["error", "all"],
|
|
191
|
+
// Prettier integration
|
|
192
|
+
"prettier/prettier": "error",
|
|
204
193
|
},
|
|
205
|
-
|
|
206
|
-
|
|
194
|
+
}, {
|
|
195
|
+
ignores: [".next/*", "coverage/*", "src/env.ts", "**/*.gql"],
|
|
196
|
+
});
|
|
207
197
|
//# sourceMappingURL=eslint.config.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eslint.config.js","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"eslint.config.js","sourceRoot":"","sources":["../src/eslint.config.js"],"names":[],"mappings":"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"}
|