@4mbl/lint 0.0.0-alpha.ec90118 → 0.0.0-alpha.f0f62f4
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/CHANGELOG.md +36 -0
- package/dist/base.d.ts +12 -6
- package/dist/base.d.ts.map +1 -1
- package/dist/base.js +4 -1
- package/dist/base.js.map +1 -1
- package/dist/next.d.ts +536 -2
- package/dist/next.d.ts.map +1 -1
- package/dist/next.js +22 -5
- package/dist/next.js.map +1 -1
- package/dist/node.d.ts +27 -7
- package/dist/node.d.ts.map +1 -1
- package/dist/node.js +12 -2
- package/dist/node.js.map +1 -1
- package/dist/react.d.ts +19 -9
- package/dist/react.d.ts.map +1 -1
- package/dist/react.js +13 -3
- package/dist/react.js.map +1 -1
- package/package.json +6 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @4mbl/lint
|
|
2
2
|
|
|
3
|
+
## 1.0.0-beta.16
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b303b6f: Upgrade dependencies
|
|
8
|
+
|
|
9
|
+
## 1.0.0-beta.15
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- aa95edc: Upgrade dependencies
|
|
14
|
+
|
|
15
|
+
## 1.0.0-beta.14
|
|
16
|
+
|
|
17
|
+
### Minor Changes
|
|
18
|
+
|
|
19
|
+
- e34f9fe: Enable import plugin in base
|
|
20
|
+
- 5586655: Disable some import plugin rules in base
|
|
21
|
+
- 9b2b412: Disable `no-nodejs-modules` in node
|
|
22
|
+
|
|
23
|
+
## 1.0.0-beta.13
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- dd66007: Pin dependencies to ensure future compatibility
|
|
28
|
+
- 0feb87d: Remove unused dependencies and inline trivial imports
|
|
29
|
+
- 1d98a33: Disable `react/forbid-component-props` and `react/forbid-dom-props` to ensure Tailwind compatibility
|
|
30
|
+
- a9085f2: Extend inherited plugins in child presets
|
|
31
|
+
- 014d999: Allow `eslint/no-underscore-dangle` for `__dirname` and `__filename` in node
|
|
32
|
+
|
|
33
|
+
## 1.0.0-beta.12
|
|
34
|
+
|
|
35
|
+
### Minor Changes
|
|
36
|
+
|
|
37
|
+
- aee0259: Upgrade dependencies
|
|
38
|
+
|
|
3
39
|
## 1.0.0-beta.11
|
|
4
40
|
|
|
5
41
|
### Minor Changes
|
package/dist/base.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { defineConfig, type OxlintConfig } from 'oxlint';
|
|
2
2
|
type BaseOptions = {};
|
|
3
3
|
declare function baseConfig(_options?: Partial<BaseOptions>): {
|
|
4
|
-
plugins: ("unicorn" | "typescript")[];
|
|
4
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
5
5
|
jsPlugins: never[];
|
|
6
6
|
categories: {
|
|
7
7
|
correctness: "error";
|
|
@@ -91,7 +91,7 @@ declare function baseConfig(_options?: Partial<BaseOptions>): {
|
|
|
91
91
|
'typescript/prefer-as-const': "error";
|
|
92
92
|
'typescript/triple-slash-reference': "error";
|
|
93
93
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
94
|
-
accessibility:
|
|
94
|
+
accessibility: "no-public";
|
|
95
95
|
}];
|
|
96
96
|
'eslint/id-length': "off";
|
|
97
97
|
'eslint/sort-keys': "off";
|
|
@@ -101,7 +101,7 @@ declare function baseConfig(_options?: Partial<BaseOptions>): {
|
|
|
101
101
|
'eslint/max-params': "off";
|
|
102
102
|
'eslint/no-ternary': "off";
|
|
103
103
|
'eslint/curly': "warn";
|
|
104
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
104
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
105
105
|
'eslint/max-statements': "off";
|
|
106
106
|
'typescript/consistent-return': "off";
|
|
107
107
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -133,12 +133,15 @@ declare function baseConfig(_options?: Partial<BaseOptions>): {
|
|
|
133
133
|
'import/no-namespace': "off";
|
|
134
134
|
'import/exports-last': "off";
|
|
135
135
|
'import/no-unassigned-import': "off";
|
|
136
|
+
'import/group-exports': "off";
|
|
137
|
+
'import/consistent-type-specifier-style': "off";
|
|
136
138
|
'unicorn/no-new-array': "off";
|
|
137
139
|
'eslint/no-array-constructor': "warn";
|
|
138
140
|
'typescript/explicit-function-return-type': "off";
|
|
139
141
|
'typescript/explicit-module-boundary-types': "off";
|
|
140
142
|
'unicorn/no-anonymous-default-export': "off";
|
|
141
143
|
'eslint/sort-imports': "off";
|
|
144
|
+
'import/no-relative-parent-imports': "off";
|
|
142
145
|
'eslint/no-magic-numbers': "off";
|
|
143
146
|
'unicorn/prefer-modern-math-apis': "off";
|
|
144
147
|
'eslint/no-use-before-define': "off";
|
|
@@ -160,7 +163,7 @@ declare function baseConfig(_options?: Partial<BaseOptions>): {
|
|
|
160
163
|
};
|
|
161
164
|
export { type OxlintConfig, defineConfig, baseConfig };
|
|
162
165
|
declare const _default: {
|
|
163
|
-
plugins: ("unicorn" | "typescript")[];
|
|
166
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
164
167
|
jsPlugins: never[];
|
|
165
168
|
categories: {
|
|
166
169
|
correctness: "error";
|
|
@@ -250,7 +253,7 @@ declare const _default: {
|
|
|
250
253
|
'typescript/prefer-as-const': "error";
|
|
251
254
|
'typescript/triple-slash-reference': "error";
|
|
252
255
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
253
|
-
accessibility:
|
|
256
|
+
accessibility: "no-public";
|
|
254
257
|
}];
|
|
255
258
|
'eslint/id-length': "off";
|
|
256
259
|
'eslint/sort-keys': "off";
|
|
@@ -260,7 +263,7 @@ declare const _default: {
|
|
|
260
263
|
'eslint/max-params': "off";
|
|
261
264
|
'eslint/no-ternary': "off";
|
|
262
265
|
'eslint/curly': "warn";
|
|
263
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
266
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
264
267
|
'eslint/max-statements': "off";
|
|
265
268
|
'typescript/consistent-return': "off";
|
|
266
269
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -292,12 +295,15 @@ declare const _default: {
|
|
|
292
295
|
'import/no-namespace': "off";
|
|
293
296
|
'import/exports-last': "off";
|
|
294
297
|
'import/no-unassigned-import': "off";
|
|
298
|
+
'import/group-exports': "off";
|
|
299
|
+
'import/consistent-type-specifier-style': "off";
|
|
295
300
|
'unicorn/no-new-array': "off";
|
|
296
301
|
'eslint/no-array-constructor': "warn";
|
|
297
302
|
'typescript/explicit-function-return-type': "off";
|
|
298
303
|
'typescript/explicit-module-boundary-types': "off";
|
|
299
304
|
'unicorn/no-anonymous-default-export': "off";
|
|
300
305
|
'eslint/sort-imports': "off";
|
|
306
|
+
'import/no-relative-parent-imports': "off";
|
|
301
307
|
'eslint/no-magic-numbers': "off";
|
|
302
308
|
'unicorn/prefer-modern-math-apis': "off";
|
|
303
309
|
'eslint/no-use-before-define': "off";
|
package/dist/base.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEzD,KAAK,WAAW,GAAG,EAAE,CAAC;AAItB,iBAAS,UAAU,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC
|
|
1
|
+
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEzD,KAAK,WAAW,GAAG,EAAE,CAAC;AAItB,iBAAS,UAAU,CAAC,QAAQ,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyLlD;AAED,OAAO,EAAE,KAAK,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvD,wBAA4B"}
|
package/dist/base.js
CHANGED
|
@@ -3,7 +3,7 @@ import { defineConfig } from 'oxlint';
|
|
|
3
3
|
function baseConfig(_options) {
|
|
4
4
|
// const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
5
5
|
return defineConfig({
|
|
6
|
-
plugins: ['typescript', 'unicorn'],
|
|
6
|
+
plugins: ['import', 'typescript', 'unicorn'],
|
|
7
7
|
jsPlugins: [],
|
|
8
8
|
categories: {
|
|
9
9
|
correctness: 'error',
|
|
@@ -137,6 +137,8 @@ function baseConfig(_options) {
|
|
|
137
137
|
'import/no-namespace': 'off', // star imports are still pretty necessary
|
|
138
138
|
'import/exports-last': 'off', // star imports are still pretty necessary
|
|
139
139
|
'import/no-unassigned-import': 'off', // required for css imports
|
|
140
|
+
'import/group-exports': 'off', // co-locating export statement with the function it exports is more readable
|
|
141
|
+
'import/consistent-type-specifier-style': 'off', // single import per file is more readable
|
|
140
142
|
// Array.from() is slower than new Array()
|
|
141
143
|
// https://jsperf.app/tatuse
|
|
142
144
|
'unicorn/no-new-array': 'off',
|
|
@@ -147,6 +149,7 @@ function baseConfig(_options) {
|
|
|
147
149
|
// may revisit
|
|
148
150
|
'unicorn/no-anonymous-default-export': 'off',
|
|
149
151
|
'eslint/sort-imports': 'off', // consider when oxfmt is setup
|
|
152
|
+
'import/no-relative-parent-imports': 'off',
|
|
150
153
|
// currently produces too many false positives
|
|
151
154
|
'eslint/no-magic-numbers': 'off',
|
|
152
155
|
'unicorn/prefer-modern-math-apis': 'off',
|
package/dist/base.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.js","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AAIzD,2CAA2C;AAE3C,SAAS,UAAU,CAAC,QAA+B;IACjD,mDAAmD;IAEnD,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,CAAC,YAAY,EAAE,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"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"}
|
package/dist/next.d.ts
CHANGED
|
@@ -11,8 +11,542 @@ type NextOptions = ReactOptions & {
|
|
|
11
11
|
*/
|
|
12
12
|
uiPath: string | null;
|
|
13
13
|
};
|
|
14
|
-
declare function nextConfig(options?: Partial<NextOptions>):
|
|
14
|
+
declare function nextConfig(options?: Partial<NextOptions>): {
|
|
15
|
+
extends: {
|
|
16
|
+
extends: {
|
|
17
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
18
|
+
jsPlugins: never[];
|
|
19
|
+
categories: {
|
|
20
|
+
correctness: "error";
|
|
21
|
+
suspicious: "warn";
|
|
22
|
+
pedantic: "off";
|
|
23
|
+
perf: "warn";
|
|
24
|
+
style: "warn";
|
|
25
|
+
restriction: "warn";
|
|
26
|
+
nursery: "off";
|
|
27
|
+
};
|
|
28
|
+
env: {
|
|
29
|
+
builtin: true;
|
|
30
|
+
};
|
|
31
|
+
options: {
|
|
32
|
+
typeAware: true;
|
|
33
|
+
};
|
|
34
|
+
rules: {
|
|
35
|
+
'eslint/no-var': "warn";
|
|
36
|
+
'eslint/prefer-const': "error";
|
|
37
|
+
'eslint/prefer-rest-params': "error";
|
|
38
|
+
'eslint/prefer-spread': "error";
|
|
39
|
+
'eslint/no-async-promise-executor': "error";
|
|
40
|
+
'eslint/no-case-declarations': "error";
|
|
41
|
+
'eslint/no-class-assign': "error";
|
|
42
|
+
'eslint/no-compare-neg-zero': "error";
|
|
43
|
+
'eslint/no-cond-assign': "error";
|
|
44
|
+
'eslint/no-const-assign': "error";
|
|
45
|
+
'eslint/no-constant-binary-expression': "error";
|
|
46
|
+
'eslint/no-constant-condition': "error";
|
|
47
|
+
'eslint/no-control-regex': "error";
|
|
48
|
+
'eslint/no-debugger': "error";
|
|
49
|
+
'eslint/no-delete-var': "error";
|
|
50
|
+
'eslint/no-dupe-else-if': "error";
|
|
51
|
+
'eslint/no-duplicate-case': "error";
|
|
52
|
+
'eslint/no-empty': "error";
|
|
53
|
+
'eslint/no-empty-character-class': "error";
|
|
54
|
+
'eslint/no-empty-pattern': "error";
|
|
55
|
+
'eslint/no-empty-static-block': "error";
|
|
56
|
+
'eslint/no-ex-assign': "error";
|
|
57
|
+
'eslint/no-extra-boolean-cast': "error";
|
|
58
|
+
'eslint/no-fallthrough': ["error", {
|
|
59
|
+
allowEmptyCase: boolean;
|
|
60
|
+
}];
|
|
61
|
+
'eslint/no-func-assign': "error";
|
|
62
|
+
'eslint/no-global-assign': "error";
|
|
63
|
+
'eslint/no-import-assign': "error";
|
|
64
|
+
'eslint/no-invalid-regexp': "error";
|
|
65
|
+
'eslint/no-irregular-whitespace': "error";
|
|
66
|
+
'eslint/no-loss-of-precision': "error";
|
|
67
|
+
'eslint/no-misleading-character-class': "error";
|
|
68
|
+
'eslint/no-nonoctal-decimal-escape': "error";
|
|
69
|
+
'eslint/no-obj-calls': "error";
|
|
70
|
+
'eslint/no-prototype-builtins': "error";
|
|
71
|
+
'eslint/no-redeclare': "error";
|
|
72
|
+
'eslint/no-regex-spaces': "error";
|
|
73
|
+
'eslint/no-self-assign': "error";
|
|
74
|
+
'eslint/no-shadow-restricted-names': "error";
|
|
75
|
+
'eslint/no-sparse-arrays': "error";
|
|
76
|
+
'eslint/no-unexpected-multiline': "error";
|
|
77
|
+
'eslint/no-unsafe-finally': "error";
|
|
78
|
+
'eslint/no-unsafe-negation': "error";
|
|
79
|
+
'eslint/no-unsafe-optional-chaining': "error";
|
|
80
|
+
'eslint/no-unused-labels': "error";
|
|
81
|
+
'eslint/no-unused-private-class-members': "error";
|
|
82
|
+
'eslint/no-unused-vars': "warn";
|
|
83
|
+
'eslint/no-useless-backreference': "error";
|
|
84
|
+
'eslint/no-useless-catch': "error";
|
|
85
|
+
'eslint/no-useless-escape': "error";
|
|
86
|
+
'eslint/require-yield': "error";
|
|
87
|
+
'eslint/use-isnan': "error";
|
|
88
|
+
'eslint/valid-typeof': "error";
|
|
89
|
+
'eslint/no-unused-expressions': "warn";
|
|
90
|
+
'typescript/ban-ts-comment': "error";
|
|
91
|
+
'typescript/no-duplicate-enum-values': "off";
|
|
92
|
+
'typescript/no-empty-object-type': "error";
|
|
93
|
+
'typescript/no-explicit-any': "error";
|
|
94
|
+
'typescript/no-extra-non-null-assertion': "error";
|
|
95
|
+
'typescript/no-misused-new': "error";
|
|
96
|
+
'typescript/no-namespace': "error";
|
|
97
|
+
'typescript/no-non-null-asserted-optional-chain': "error";
|
|
98
|
+
'typescript/no-require-imports': "error";
|
|
99
|
+
'typescript/no-this-alias': "error";
|
|
100
|
+
'typescript/no-unnecessary-type-constraint': "error";
|
|
101
|
+
'typescript/no-unsafe-declaration-merging': "error";
|
|
102
|
+
'typescript/no-unsafe-function-type': "error";
|
|
103
|
+
'typescript/no-wrapper-object-types': "error";
|
|
104
|
+
'typescript/prefer-as-const': "error";
|
|
105
|
+
'typescript/triple-slash-reference': "error";
|
|
106
|
+
'typescript/explicit-member-accessibility': ["warn", {
|
|
107
|
+
accessibility: "no-public";
|
|
108
|
+
}];
|
|
109
|
+
'eslint/id-length': "off";
|
|
110
|
+
'eslint/sort-keys': "off";
|
|
111
|
+
'eslint/capitalized-comments': "off";
|
|
112
|
+
'eslint/func-style': "off";
|
|
113
|
+
'eslint/complexity': "off";
|
|
114
|
+
'eslint/max-params': "off";
|
|
115
|
+
'eslint/no-ternary': "off";
|
|
116
|
+
'eslint/curly': "warn";
|
|
117
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
118
|
+
'eslint/max-statements': "off";
|
|
119
|
+
'typescript/consistent-return': "off";
|
|
120
|
+
'unicorn/switch-case-braces': "warn";
|
|
121
|
+
'typescript/prefer-regexp-exec': "warn";
|
|
122
|
+
'eslint/init-declarations': "off";
|
|
123
|
+
'unicorn/no-null': "off";
|
|
124
|
+
'eslint/no-undefined': "off";
|
|
125
|
+
'eslint/no-console': "off";
|
|
126
|
+
'eslint/no-continue': "off";
|
|
127
|
+
'eslint/no-implicit-coercion': ["warn", {
|
|
128
|
+
allow: string[];
|
|
129
|
+
}];
|
|
130
|
+
'eslint/no-plusplus': "off";
|
|
131
|
+
'eslint/no-void': "off";
|
|
132
|
+
'eslint/no-nested-ternary': "off";
|
|
133
|
+
'eslint/no-empty-function': ["warn", {
|
|
134
|
+
allow: string[];
|
|
135
|
+
}];
|
|
136
|
+
'unicorn/no-instanceof-builtins': "off";
|
|
137
|
+
'unicorn/prefer-spread': "off";
|
|
138
|
+
'eslint/new-cap': "off";
|
|
139
|
+
'unicorn/no-await-expression-member': "off";
|
|
140
|
+
'eslint/no-duplicate-imports': ["warn", {
|
|
141
|
+
allowSeparateTypeImports: boolean;
|
|
142
|
+
}];
|
|
143
|
+
'import/no-named-export': "off";
|
|
144
|
+
'import/no-default-export': "off";
|
|
145
|
+
'import/prefer-default-export': "off";
|
|
146
|
+
'import/no-namespace': "off";
|
|
147
|
+
'import/exports-last': "off";
|
|
148
|
+
'import/no-unassigned-import': "off";
|
|
149
|
+
'import/group-exports': "off";
|
|
150
|
+
'import/consistent-type-specifier-style': "off";
|
|
151
|
+
'unicorn/no-new-array': "off";
|
|
152
|
+
'eslint/no-array-constructor': "warn";
|
|
153
|
+
'typescript/explicit-function-return-type': "off";
|
|
154
|
+
'typescript/explicit-module-boundary-types': "off";
|
|
155
|
+
'unicorn/no-anonymous-default-export': "off";
|
|
156
|
+
'eslint/sort-imports': "off";
|
|
157
|
+
'import/no-relative-parent-imports': "off";
|
|
158
|
+
'eslint/no-magic-numbers': "off";
|
|
159
|
+
'unicorn/prefer-modern-math-apis': "off";
|
|
160
|
+
'eslint/no-use-before-define': "off";
|
|
161
|
+
'eslint/constructor-super': "off";
|
|
162
|
+
'eslint/getter-return': "off";
|
|
163
|
+
'eslint/no-dupe-class-members': "off";
|
|
164
|
+
'eslint/no-dupe-keys': "off";
|
|
165
|
+
'eslint/no-new-native-nonconstructor': "off";
|
|
166
|
+
'eslint/no-setter-return': "off";
|
|
167
|
+
'eslint/no-this-before-super': "off";
|
|
168
|
+
'eslint/no-undef': "off";
|
|
169
|
+
'eslint/no-unreachable': "off";
|
|
170
|
+
'eslint/no-with': "off";
|
|
171
|
+
'unicorn/no-nested-ternary': "off";
|
|
172
|
+
'oxc/no-optional-chaining': "off";
|
|
173
|
+
'oxc/no-rest-spread-properties': "off";
|
|
174
|
+
'oxc/no-async-await': "off";
|
|
175
|
+
};
|
|
176
|
+
}[];
|
|
177
|
+
plugins: ("react" | "unicorn" | "typescript" | "import")[];
|
|
178
|
+
jsPlugins: {
|
|
179
|
+
name: string;
|
|
180
|
+
specifier: string;
|
|
181
|
+
}[];
|
|
182
|
+
rules: {
|
|
183
|
+
'react/rules-of-hooks': "error";
|
|
184
|
+
'react/exhaustive-deps': "warn";
|
|
185
|
+
'react-hooks-js/set-state-in-effect': "warn";
|
|
186
|
+
'react/only-export-components': "error";
|
|
187
|
+
'react-compiler-js/react-compiler': "error";
|
|
188
|
+
'react/jsx-filename-extension': "off";
|
|
189
|
+
'react/jsx-max-depth': "off";
|
|
190
|
+
'react/no-multi-comp': "off";
|
|
191
|
+
'react/jsx-props-no-spreading': "off";
|
|
192
|
+
'react/forbid-component-props': "off";
|
|
193
|
+
'react/forbid-dom-props': "off";
|
|
194
|
+
};
|
|
195
|
+
overrides: {
|
|
196
|
+
files: string[];
|
|
197
|
+
rules: {
|
|
198
|
+
'react/display-name': "error";
|
|
199
|
+
'react/jsx-key': "error";
|
|
200
|
+
'react/jsx-no-comment-textnodes': "error";
|
|
201
|
+
'react/jsx-no-duplicate-props': "error";
|
|
202
|
+
'react/jsx-no-target-blank': "off";
|
|
203
|
+
'react/jsx-no-undef': "error";
|
|
204
|
+
'react/no-children-prop': "error";
|
|
205
|
+
'react/no-danger-with-children': "error";
|
|
206
|
+
'react/no-direct-mutation-state': "error";
|
|
207
|
+
'react/no-find-dom-node': "error";
|
|
208
|
+
'react/no-is-mounted': "error";
|
|
209
|
+
'react/no-render-return-value': "error";
|
|
210
|
+
'react/no-string-refs': "error";
|
|
211
|
+
'react/no-unescaped-entities': "error";
|
|
212
|
+
'react/no-unknown-property': "off";
|
|
213
|
+
'react/no-unsafe': "off";
|
|
214
|
+
'react/react-in-jsx-scope': "off";
|
|
215
|
+
'react/require-render-return': "error";
|
|
216
|
+
'import/no-anonymous-default-export': "warn";
|
|
217
|
+
'jsx-a11y/alt-text': ["warn", {
|
|
218
|
+
elements: string[];
|
|
219
|
+
img: string[];
|
|
220
|
+
}];
|
|
221
|
+
'jsx-a11y/aria-props': "warn";
|
|
222
|
+
'jsx-a11y/aria-proptypes': "warn";
|
|
223
|
+
'jsx-a11y/aria-unsupported-elements': "warn";
|
|
224
|
+
'jsx-a11y/role-has-required-aria-props': "warn";
|
|
225
|
+
'jsx-a11y/role-supports-aria-props': "warn";
|
|
226
|
+
};
|
|
227
|
+
globals: {
|
|
228
|
+
AudioWorkletGlobalScope: "readonly";
|
|
229
|
+
AudioWorkletProcessor: "readonly";
|
|
230
|
+
currentFrame: "readonly";
|
|
231
|
+
currentTime: "readonly";
|
|
232
|
+
registerProcessor: "readonly";
|
|
233
|
+
sampleRate: "readonly";
|
|
234
|
+
WorkletGlobalScope: "readonly";
|
|
235
|
+
};
|
|
236
|
+
plugins: ("import" | "jsx-a11y")[];
|
|
237
|
+
env: {
|
|
238
|
+
browser: true;
|
|
239
|
+
node: true;
|
|
240
|
+
};
|
|
241
|
+
}[];
|
|
242
|
+
}[];
|
|
243
|
+
plugins: ("react" | "unicorn" | "typescript" | "import" | "nextjs")[];
|
|
244
|
+
rules: {
|
|
245
|
+
'nextjs/google-font-display': "warn";
|
|
246
|
+
'nextjs/google-font-preconnect': "warn";
|
|
247
|
+
'nextjs/next-script-for-ga': "warn";
|
|
248
|
+
'nextjs/no-async-client-component': "warn";
|
|
249
|
+
'nextjs/no-before-interactive-script-outside-document': "warn";
|
|
250
|
+
'nextjs/no-css-tags': "warn";
|
|
251
|
+
'nextjs/no-head-element': "warn";
|
|
252
|
+
'nextjs/no-html-link-for-pages': "error";
|
|
253
|
+
'nextjs/no-page-custom-font': "warn";
|
|
254
|
+
'nextjs/no-styled-jsx-in-document': "warn";
|
|
255
|
+
'nextjs/no-sync-scripts': "error";
|
|
256
|
+
'nextjs/no-title-in-document-head': "warn";
|
|
257
|
+
'nextjs/no-typos': "warn";
|
|
258
|
+
'nextjs/no-unwanted-polyfillio': "warn";
|
|
259
|
+
'nextjs/inline-script-id': "error";
|
|
260
|
+
'nextjs/no-assign-module-variable': "error";
|
|
261
|
+
'nextjs/no-document-import-in-page': "error";
|
|
262
|
+
'nextjs/no-duplicate-head': "error";
|
|
263
|
+
'nextjs/no-head-import-in-document': "error";
|
|
264
|
+
'nextjs/no-script-component-in-head': "error";
|
|
265
|
+
'react/only-export-components': ["warn", {
|
|
266
|
+
allowExportNames: string[];
|
|
267
|
+
}];
|
|
268
|
+
};
|
|
269
|
+
ignorePatterns: string[];
|
|
270
|
+
overrides: ({
|
|
271
|
+
files: never[];
|
|
272
|
+
rules: {
|
|
273
|
+
'react/only-export-components'?: undefined;
|
|
274
|
+
};
|
|
275
|
+
} | {
|
|
276
|
+
files: string[];
|
|
277
|
+
rules: {
|
|
278
|
+
'react/only-export-components': "off";
|
|
279
|
+
};
|
|
280
|
+
})[];
|
|
281
|
+
};
|
|
15
282
|
export { type OxlintConfig, defineConfig, nextConfig };
|
|
16
|
-
declare const _default:
|
|
283
|
+
declare const _default: {
|
|
284
|
+
extends: {
|
|
285
|
+
extends: {
|
|
286
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
287
|
+
jsPlugins: never[];
|
|
288
|
+
categories: {
|
|
289
|
+
correctness: "error";
|
|
290
|
+
suspicious: "warn";
|
|
291
|
+
pedantic: "off";
|
|
292
|
+
perf: "warn";
|
|
293
|
+
style: "warn";
|
|
294
|
+
restriction: "warn";
|
|
295
|
+
nursery: "off";
|
|
296
|
+
};
|
|
297
|
+
env: {
|
|
298
|
+
builtin: true;
|
|
299
|
+
};
|
|
300
|
+
options: {
|
|
301
|
+
typeAware: true;
|
|
302
|
+
};
|
|
303
|
+
rules: {
|
|
304
|
+
'eslint/no-var': "warn";
|
|
305
|
+
'eslint/prefer-const': "error";
|
|
306
|
+
'eslint/prefer-rest-params': "error";
|
|
307
|
+
'eslint/prefer-spread': "error";
|
|
308
|
+
'eslint/no-async-promise-executor': "error";
|
|
309
|
+
'eslint/no-case-declarations': "error";
|
|
310
|
+
'eslint/no-class-assign': "error";
|
|
311
|
+
'eslint/no-compare-neg-zero': "error";
|
|
312
|
+
'eslint/no-cond-assign': "error";
|
|
313
|
+
'eslint/no-const-assign': "error";
|
|
314
|
+
'eslint/no-constant-binary-expression': "error";
|
|
315
|
+
'eslint/no-constant-condition': "error";
|
|
316
|
+
'eslint/no-control-regex': "error";
|
|
317
|
+
'eslint/no-debugger': "error";
|
|
318
|
+
'eslint/no-delete-var': "error";
|
|
319
|
+
'eslint/no-dupe-else-if': "error";
|
|
320
|
+
'eslint/no-duplicate-case': "error";
|
|
321
|
+
'eslint/no-empty': "error";
|
|
322
|
+
'eslint/no-empty-character-class': "error";
|
|
323
|
+
'eslint/no-empty-pattern': "error";
|
|
324
|
+
'eslint/no-empty-static-block': "error";
|
|
325
|
+
'eslint/no-ex-assign': "error";
|
|
326
|
+
'eslint/no-extra-boolean-cast': "error";
|
|
327
|
+
'eslint/no-fallthrough': ["error", {
|
|
328
|
+
allowEmptyCase: boolean;
|
|
329
|
+
}];
|
|
330
|
+
'eslint/no-func-assign': "error";
|
|
331
|
+
'eslint/no-global-assign': "error";
|
|
332
|
+
'eslint/no-import-assign': "error";
|
|
333
|
+
'eslint/no-invalid-regexp': "error";
|
|
334
|
+
'eslint/no-irregular-whitespace': "error";
|
|
335
|
+
'eslint/no-loss-of-precision': "error";
|
|
336
|
+
'eslint/no-misleading-character-class': "error";
|
|
337
|
+
'eslint/no-nonoctal-decimal-escape': "error";
|
|
338
|
+
'eslint/no-obj-calls': "error";
|
|
339
|
+
'eslint/no-prototype-builtins': "error";
|
|
340
|
+
'eslint/no-redeclare': "error";
|
|
341
|
+
'eslint/no-regex-spaces': "error";
|
|
342
|
+
'eslint/no-self-assign': "error";
|
|
343
|
+
'eslint/no-shadow-restricted-names': "error";
|
|
344
|
+
'eslint/no-sparse-arrays': "error";
|
|
345
|
+
'eslint/no-unexpected-multiline': "error";
|
|
346
|
+
'eslint/no-unsafe-finally': "error";
|
|
347
|
+
'eslint/no-unsafe-negation': "error";
|
|
348
|
+
'eslint/no-unsafe-optional-chaining': "error";
|
|
349
|
+
'eslint/no-unused-labels': "error";
|
|
350
|
+
'eslint/no-unused-private-class-members': "error";
|
|
351
|
+
'eslint/no-unused-vars': "warn";
|
|
352
|
+
'eslint/no-useless-backreference': "error";
|
|
353
|
+
'eslint/no-useless-catch': "error";
|
|
354
|
+
'eslint/no-useless-escape': "error";
|
|
355
|
+
'eslint/require-yield': "error";
|
|
356
|
+
'eslint/use-isnan': "error";
|
|
357
|
+
'eslint/valid-typeof': "error";
|
|
358
|
+
'eslint/no-unused-expressions': "warn";
|
|
359
|
+
'typescript/ban-ts-comment': "error";
|
|
360
|
+
'typescript/no-duplicate-enum-values': "off";
|
|
361
|
+
'typescript/no-empty-object-type': "error";
|
|
362
|
+
'typescript/no-explicit-any': "error";
|
|
363
|
+
'typescript/no-extra-non-null-assertion': "error";
|
|
364
|
+
'typescript/no-misused-new': "error";
|
|
365
|
+
'typescript/no-namespace': "error";
|
|
366
|
+
'typescript/no-non-null-asserted-optional-chain': "error";
|
|
367
|
+
'typescript/no-require-imports': "error";
|
|
368
|
+
'typescript/no-this-alias': "error";
|
|
369
|
+
'typescript/no-unnecessary-type-constraint': "error";
|
|
370
|
+
'typescript/no-unsafe-declaration-merging': "error";
|
|
371
|
+
'typescript/no-unsafe-function-type': "error";
|
|
372
|
+
'typescript/no-wrapper-object-types': "error";
|
|
373
|
+
'typescript/prefer-as-const': "error";
|
|
374
|
+
'typescript/triple-slash-reference': "error";
|
|
375
|
+
'typescript/explicit-member-accessibility': ["warn", {
|
|
376
|
+
accessibility: "no-public";
|
|
377
|
+
}];
|
|
378
|
+
'eslint/id-length': "off";
|
|
379
|
+
'eslint/sort-keys': "off";
|
|
380
|
+
'eslint/capitalized-comments': "off";
|
|
381
|
+
'eslint/func-style': "off";
|
|
382
|
+
'eslint/complexity': "off";
|
|
383
|
+
'eslint/max-params': "off";
|
|
384
|
+
'eslint/no-ternary': "off";
|
|
385
|
+
'eslint/curly': "warn";
|
|
386
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
387
|
+
'eslint/max-statements': "off";
|
|
388
|
+
'typescript/consistent-return': "off";
|
|
389
|
+
'unicorn/switch-case-braces': "warn";
|
|
390
|
+
'typescript/prefer-regexp-exec': "warn";
|
|
391
|
+
'eslint/init-declarations': "off";
|
|
392
|
+
'unicorn/no-null': "off";
|
|
393
|
+
'eslint/no-undefined': "off";
|
|
394
|
+
'eslint/no-console': "off";
|
|
395
|
+
'eslint/no-continue': "off";
|
|
396
|
+
'eslint/no-implicit-coercion': ["warn", {
|
|
397
|
+
allow: string[];
|
|
398
|
+
}];
|
|
399
|
+
'eslint/no-plusplus': "off";
|
|
400
|
+
'eslint/no-void': "off";
|
|
401
|
+
'eslint/no-nested-ternary': "off";
|
|
402
|
+
'eslint/no-empty-function': ["warn", {
|
|
403
|
+
allow: string[];
|
|
404
|
+
}];
|
|
405
|
+
'unicorn/no-instanceof-builtins': "off";
|
|
406
|
+
'unicorn/prefer-spread': "off";
|
|
407
|
+
'eslint/new-cap': "off";
|
|
408
|
+
'unicorn/no-await-expression-member': "off";
|
|
409
|
+
'eslint/no-duplicate-imports': ["warn", {
|
|
410
|
+
allowSeparateTypeImports: boolean;
|
|
411
|
+
}];
|
|
412
|
+
'import/no-named-export': "off";
|
|
413
|
+
'import/no-default-export': "off";
|
|
414
|
+
'import/prefer-default-export': "off";
|
|
415
|
+
'import/no-namespace': "off";
|
|
416
|
+
'import/exports-last': "off";
|
|
417
|
+
'import/no-unassigned-import': "off";
|
|
418
|
+
'import/group-exports': "off";
|
|
419
|
+
'import/consistent-type-specifier-style': "off";
|
|
420
|
+
'unicorn/no-new-array': "off";
|
|
421
|
+
'eslint/no-array-constructor': "warn";
|
|
422
|
+
'typescript/explicit-function-return-type': "off";
|
|
423
|
+
'typescript/explicit-module-boundary-types': "off";
|
|
424
|
+
'unicorn/no-anonymous-default-export': "off";
|
|
425
|
+
'eslint/sort-imports': "off";
|
|
426
|
+
'import/no-relative-parent-imports': "off";
|
|
427
|
+
'eslint/no-magic-numbers': "off";
|
|
428
|
+
'unicorn/prefer-modern-math-apis': "off";
|
|
429
|
+
'eslint/no-use-before-define': "off";
|
|
430
|
+
'eslint/constructor-super': "off";
|
|
431
|
+
'eslint/getter-return': "off";
|
|
432
|
+
'eslint/no-dupe-class-members': "off";
|
|
433
|
+
'eslint/no-dupe-keys': "off";
|
|
434
|
+
'eslint/no-new-native-nonconstructor': "off";
|
|
435
|
+
'eslint/no-setter-return': "off";
|
|
436
|
+
'eslint/no-this-before-super': "off";
|
|
437
|
+
'eslint/no-undef': "off";
|
|
438
|
+
'eslint/no-unreachable': "off";
|
|
439
|
+
'eslint/no-with': "off";
|
|
440
|
+
'unicorn/no-nested-ternary': "off";
|
|
441
|
+
'oxc/no-optional-chaining': "off";
|
|
442
|
+
'oxc/no-rest-spread-properties': "off";
|
|
443
|
+
'oxc/no-async-await': "off";
|
|
444
|
+
};
|
|
445
|
+
}[];
|
|
446
|
+
plugins: ("react" | "unicorn" | "typescript" | "import")[];
|
|
447
|
+
jsPlugins: {
|
|
448
|
+
name: string;
|
|
449
|
+
specifier: string;
|
|
450
|
+
}[];
|
|
451
|
+
rules: {
|
|
452
|
+
'react/rules-of-hooks': "error";
|
|
453
|
+
'react/exhaustive-deps': "warn";
|
|
454
|
+
'react-hooks-js/set-state-in-effect': "warn";
|
|
455
|
+
'react/only-export-components': "error";
|
|
456
|
+
'react-compiler-js/react-compiler': "error";
|
|
457
|
+
'react/jsx-filename-extension': "off";
|
|
458
|
+
'react/jsx-max-depth': "off";
|
|
459
|
+
'react/no-multi-comp': "off";
|
|
460
|
+
'react/jsx-props-no-spreading': "off";
|
|
461
|
+
'react/forbid-component-props': "off";
|
|
462
|
+
'react/forbid-dom-props': "off";
|
|
463
|
+
};
|
|
464
|
+
overrides: {
|
|
465
|
+
files: string[];
|
|
466
|
+
rules: {
|
|
467
|
+
'react/display-name': "error";
|
|
468
|
+
'react/jsx-key': "error";
|
|
469
|
+
'react/jsx-no-comment-textnodes': "error";
|
|
470
|
+
'react/jsx-no-duplicate-props': "error";
|
|
471
|
+
'react/jsx-no-target-blank': "off";
|
|
472
|
+
'react/jsx-no-undef': "error";
|
|
473
|
+
'react/no-children-prop': "error";
|
|
474
|
+
'react/no-danger-with-children': "error";
|
|
475
|
+
'react/no-direct-mutation-state': "error";
|
|
476
|
+
'react/no-find-dom-node': "error";
|
|
477
|
+
'react/no-is-mounted': "error";
|
|
478
|
+
'react/no-render-return-value': "error";
|
|
479
|
+
'react/no-string-refs': "error";
|
|
480
|
+
'react/no-unescaped-entities': "error";
|
|
481
|
+
'react/no-unknown-property': "off";
|
|
482
|
+
'react/no-unsafe': "off";
|
|
483
|
+
'react/react-in-jsx-scope': "off";
|
|
484
|
+
'react/require-render-return': "error";
|
|
485
|
+
'import/no-anonymous-default-export': "warn";
|
|
486
|
+
'jsx-a11y/alt-text': ["warn", {
|
|
487
|
+
elements: string[];
|
|
488
|
+
img: string[];
|
|
489
|
+
}];
|
|
490
|
+
'jsx-a11y/aria-props': "warn";
|
|
491
|
+
'jsx-a11y/aria-proptypes': "warn";
|
|
492
|
+
'jsx-a11y/aria-unsupported-elements': "warn";
|
|
493
|
+
'jsx-a11y/role-has-required-aria-props': "warn";
|
|
494
|
+
'jsx-a11y/role-supports-aria-props': "warn";
|
|
495
|
+
};
|
|
496
|
+
globals: {
|
|
497
|
+
AudioWorkletGlobalScope: "readonly";
|
|
498
|
+
AudioWorkletProcessor: "readonly";
|
|
499
|
+
currentFrame: "readonly";
|
|
500
|
+
currentTime: "readonly";
|
|
501
|
+
registerProcessor: "readonly";
|
|
502
|
+
sampleRate: "readonly";
|
|
503
|
+
WorkletGlobalScope: "readonly";
|
|
504
|
+
};
|
|
505
|
+
plugins: ("import" | "jsx-a11y")[];
|
|
506
|
+
env: {
|
|
507
|
+
browser: true;
|
|
508
|
+
node: true;
|
|
509
|
+
};
|
|
510
|
+
}[];
|
|
511
|
+
}[];
|
|
512
|
+
plugins: ("react" | "unicorn" | "typescript" | "import" | "nextjs")[];
|
|
513
|
+
rules: {
|
|
514
|
+
'nextjs/google-font-display': "warn";
|
|
515
|
+
'nextjs/google-font-preconnect': "warn";
|
|
516
|
+
'nextjs/next-script-for-ga': "warn";
|
|
517
|
+
'nextjs/no-async-client-component': "warn";
|
|
518
|
+
'nextjs/no-before-interactive-script-outside-document': "warn";
|
|
519
|
+
'nextjs/no-css-tags': "warn";
|
|
520
|
+
'nextjs/no-head-element': "warn";
|
|
521
|
+
'nextjs/no-html-link-for-pages': "error";
|
|
522
|
+
'nextjs/no-page-custom-font': "warn";
|
|
523
|
+
'nextjs/no-styled-jsx-in-document': "warn";
|
|
524
|
+
'nextjs/no-sync-scripts': "error";
|
|
525
|
+
'nextjs/no-title-in-document-head': "warn";
|
|
526
|
+
'nextjs/no-typos': "warn";
|
|
527
|
+
'nextjs/no-unwanted-polyfillio': "warn";
|
|
528
|
+
'nextjs/inline-script-id': "error";
|
|
529
|
+
'nextjs/no-assign-module-variable': "error";
|
|
530
|
+
'nextjs/no-document-import-in-page': "error";
|
|
531
|
+
'nextjs/no-duplicate-head': "error";
|
|
532
|
+
'nextjs/no-head-import-in-document': "error";
|
|
533
|
+
'nextjs/no-script-component-in-head': "error";
|
|
534
|
+
'react/only-export-components': ["warn", {
|
|
535
|
+
allowExportNames: string[];
|
|
536
|
+
}];
|
|
537
|
+
};
|
|
538
|
+
ignorePatterns: string[];
|
|
539
|
+
overrides: ({
|
|
540
|
+
files: never[];
|
|
541
|
+
rules: {
|
|
542
|
+
'react/only-export-components'?: undefined;
|
|
543
|
+
};
|
|
544
|
+
} | {
|
|
545
|
+
files: string[];
|
|
546
|
+
rules: {
|
|
547
|
+
'react/only-export-components': "off";
|
|
548
|
+
};
|
|
549
|
+
})[];
|
|
550
|
+
};
|
|
17
551
|
export default _default;
|
|
18
552
|
//# sourceMappingURL=next.d.ts.map
|
package/dist/next.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"next.d.ts","sourceRoot":"","sources":["../src/next.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,KAAK,YAAY,EAAe,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"next.d.ts","sourceRoot":"","sources":["../src/next.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,KAAK,YAAY,EAAe,MAAM,YAAY,CAAC;AAE5D,KAAK,WAAW,GAAG,YAAY,GAAG;IAChC;;;;;;;OAOG;IACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CACvB,CAAC;AAIF,iBAAS,UAAU,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0EjD;AAED,OAAO,EAAE,KAAK,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvD,wBAA4B"}
|
package/dist/next.js
CHANGED
|
@@ -2,13 +2,13 @@ import path from 'node:path';
|
|
|
2
2
|
import process from 'node:process';
|
|
3
3
|
import { defineConfig } from 'oxlint';
|
|
4
4
|
import { reactConfig } from './react.js';
|
|
5
|
-
import reactRefresh from 'eslint-plugin-react-refresh';
|
|
6
5
|
const DEFAULT_OPTIONS = { uiPath: 'src/components/ui/' };
|
|
7
6
|
function nextConfig(options) {
|
|
8
7
|
const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
8
|
+
const react = reactConfig(options);
|
|
9
9
|
return defineConfig({
|
|
10
|
-
extends: [
|
|
11
|
-
plugins: ['nextjs'],
|
|
10
|
+
extends: [react],
|
|
11
|
+
plugins: [...react.plugins, 'nextjs'],
|
|
12
12
|
rules: {
|
|
13
13
|
'nextjs/google-font-display': 'warn',
|
|
14
14
|
'nextjs/google-font-preconnect': 'warn',
|
|
@@ -31,11 +31,28 @@ function nextConfig(options) {
|
|
|
31
31
|
'nextjs/no-head-import-in-document': 'error',
|
|
32
32
|
'nextjs/no-script-component-in-head': 'error',
|
|
33
33
|
// ignores warnings for special exports in page and layout files
|
|
34
|
-
// https://github.com/ArnaudBarre/eslint-plugin-react-refresh?tab=readme-ov-file#next-config
|
|
35
34
|
'react/only-export-components': [
|
|
36
35
|
'warn',
|
|
37
36
|
{
|
|
38
|
-
|
|
37
|
+
// https://github.com/ArnaudBarre/eslint-plugin-react-refresh/blob/main/src/index.ts
|
|
38
|
+
allowExportNames: [
|
|
39
|
+
// removed in next@16.0.0: https://nextjs.org/docs/app/api-reference/file-conventions/route-segment-config#version-history
|
|
40
|
+
// 'experimental_ppr',
|
|
41
|
+
'dynamic',
|
|
42
|
+
'dynamicParams',
|
|
43
|
+
'revalidate',
|
|
44
|
+
'fetchCache',
|
|
45
|
+
'runtime',
|
|
46
|
+
'preferredRegion',
|
|
47
|
+
'maxDuration',
|
|
48
|
+
'metadata',
|
|
49
|
+
'generateMetadata',
|
|
50
|
+
'viewport',
|
|
51
|
+
'generateViewport',
|
|
52
|
+
'generateImageMetadata',
|
|
53
|
+
'generateSitemaps',
|
|
54
|
+
'generateStaticParams',
|
|
55
|
+
],
|
|
39
56
|
},
|
|
40
57
|
],
|
|
41
58
|
},
|
package/dist/next.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"next.js","sourceRoot":"","sources":["../src/next.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,OAAO,MAAM,cAAc,CAAC;AACnC,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAqB,WAAW,EAAE,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"next.js","sourceRoot":"","sources":["../src/next.ts"],"names":[],"mappings":"AAAA,OAAO,IAAI,MAAM,WAAW,CAAC;AAC7B,OAAO,OAAO,MAAM,cAAc,CAAC;AACnC,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAqB,WAAW,EAAE,MAAM,YAAY,CAAC;AAc5D,MAAM,eAAe,GAAgB,EAAE,MAAM,EAAE,oBAAoB,EAAE,CAAC;AAEtE,SAAS,UAAU,CAAC,OAA8B;IAChD,MAAM,IAAI,GAAG,EAAE,GAAG,eAAe,EAAE,GAAG,OAAO,EAAE,CAAC;IAEhD,MAAM,KAAK,GAAG,WAAW,CAAC,OAAO,CAAC,CAAC;IAEnC,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,CAAC,KAAK,CAAC;QAChB,OAAO,EAAE,CAAC,GAAG,KAAK,CAAC,OAAO,EAAE,QAAQ,CAAC;QACrC,KAAK,EAAE;YACL,4BAA4B,EAAE,MAAM;YACpC,+BAA+B,EAAE,MAAM;YACvC,2BAA2B,EAAE,MAAM;YACnC,kCAAkC,EAAE,MAAM;YAC1C,sDAAsD,EAAE,MAAM;YAC9D,oBAAoB,EAAE,MAAM;YAC5B,wBAAwB,EAAE,MAAM;YAChC,+BAA+B,EAAE,OAAO;YACxC,4BAA4B,EAAE,MAAM;YACpC,kCAAkC,EAAE,MAAM;YAC1C,wBAAwB,EAAE,OAAO;YACjC,kCAAkC,EAAE,MAAM;YAC1C,iBAAiB,EAAE,MAAM;YACzB,+BAA+B,EAAE,MAAM;YACvC,yBAAyB,EAAE,OAAO;YAClC,kCAAkC,EAAE,OAAO;YAC3C,mCAAmC,EAAE,OAAO;YAC5C,0BAA0B,EAAE,OAAO;YACnC,mCAAmC,EAAE,OAAO;YAC5C,oCAAoC,EAAE,OAAO;YAE7C,gEAAgE;YAChE,8BAA8B,EAAE;gBAC9B,MAAM;gBACN;oBACE,oFAAoF;oBACpF,gBAAgB,EAAE;wBAChB,0HAA0H;wBAC1H,sBAAsB;wBAEtB,SAAS;wBACT,eAAe;wBACf,YAAY;wBACZ,YAAY;wBACZ,SAAS;wBACT,iBAAiB;wBACjB,aAAa;wBACb,UAAU;wBACV,kBAAkB;wBAClB,UAAU;wBACV,kBAAkB;wBAClB,uBAAuB;wBACvB,kBAAkB;wBAClB,sBAAsB;qBACvB;iBACF;aACF;SACF;QACD,cAAc,EAAE,CAAC,UAAU,EAAE,QAAQ,EAAE,UAAU,EAAE,eAAe,CAAC;QACnE,SAAS,EAAE;YACT,IAAI,CAAC,MAAM,KAAK,IAAI;gBAClB,CAAC,CAAC,EAAE,KAAK,EAAE,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE;gBAC1B,CAAC,CAAC;oBACE,KAAK,EAAE;wBACL,GAAG,IAAI,CAAC,OAAO,CAAC,OAAO,CAAC,GAAG,EAAE,EAAE,IAAI,CAAC,MAAM,CAAC,mCAAmC,CAAC,UAAU,CACvF,IAAI,EACJ,GAAG,CACJ;qBACF;oBACD,KAAK,EAAE;wBACL,8BAA8B,EAAE,KAAK;qBACtC;iBACF;SACN;KACF,CAAC,CAAC;AACL,CAAC;AAED,OAAO,EAAqB,YAAY,EAAE,UAAU,EAAE,CAAC;AAEvD,eAAe,UAAU,EAAE,CAAC"}
|
package/dist/node.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { defineConfig, type OxlintConfig } from 'oxlint';
|
|
2
2
|
type NodeOptions = {};
|
|
3
|
-
declare function nodeConfig(
|
|
3
|
+
declare function nodeConfig(options?: Partial<NodeOptions>): {
|
|
4
4
|
extends: {
|
|
5
|
-
plugins: ("unicorn" | "typescript")[];
|
|
5
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
6
6
|
jsPlugins: never[];
|
|
7
7
|
categories: {
|
|
8
8
|
correctness: "error";
|
|
@@ -92,7 +92,7 @@ declare function nodeConfig(_options?: Partial<NodeOptions>): {
|
|
|
92
92
|
'typescript/prefer-as-const': "error";
|
|
93
93
|
'typescript/triple-slash-reference': "error";
|
|
94
94
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
95
|
-
accessibility:
|
|
95
|
+
accessibility: "no-public";
|
|
96
96
|
}];
|
|
97
97
|
'eslint/id-length': "off";
|
|
98
98
|
'eslint/sort-keys': "off";
|
|
@@ -102,7 +102,7 @@ declare function nodeConfig(_options?: Partial<NodeOptions>): {
|
|
|
102
102
|
'eslint/max-params': "off";
|
|
103
103
|
'eslint/no-ternary': "off";
|
|
104
104
|
'eslint/curly': "warn";
|
|
105
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
105
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
106
106
|
'eslint/max-statements': "off";
|
|
107
107
|
'typescript/consistent-return': "off";
|
|
108
108
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -134,12 +134,15 @@ declare function nodeConfig(_options?: Partial<NodeOptions>): {
|
|
|
134
134
|
'import/no-namespace': "off";
|
|
135
135
|
'import/exports-last': "off";
|
|
136
136
|
'import/no-unassigned-import': "off";
|
|
137
|
+
'import/group-exports': "off";
|
|
138
|
+
'import/consistent-type-specifier-style': "off";
|
|
137
139
|
'unicorn/no-new-array': "off";
|
|
138
140
|
'eslint/no-array-constructor': "warn";
|
|
139
141
|
'typescript/explicit-function-return-type': "off";
|
|
140
142
|
'typescript/explicit-module-boundary-types': "off";
|
|
141
143
|
'unicorn/no-anonymous-default-export': "off";
|
|
142
144
|
'eslint/sort-imports': "off";
|
|
145
|
+
'import/no-relative-parent-imports': "off";
|
|
143
146
|
'eslint/no-magic-numbers': "off";
|
|
144
147
|
'unicorn/prefer-modern-math-apis': "off";
|
|
145
148
|
'eslint/no-use-before-define': "off";
|
|
@@ -159,14 +162,21 @@ declare function nodeConfig(_options?: Partial<NodeOptions>): {
|
|
|
159
162
|
'oxc/no-async-await': "off";
|
|
160
163
|
};
|
|
161
164
|
}[];
|
|
165
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
162
166
|
env: {
|
|
163
167
|
node: true;
|
|
164
168
|
};
|
|
169
|
+
rules: {
|
|
170
|
+
'eslint/no-underscore-dangle': ["warn", {
|
|
171
|
+
allow: string[];
|
|
172
|
+
}];
|
|
173
|
+
'no-nodejs-modules': "off";
|
|
174
|
+
};
|
|
165
175
|
};
|
|
166
176
|
export { type OxlintConfig, defineConfig, nodeConfig };
|
|
167
177
|
declare const _default: {
|
|
168
178
|
extends: {
|
|
169
|
-
plugins: ("unicorn" | "typescript")[];
|
|
179
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
170
180
|
jsPlugins: never[];
|
|
171
181
|
categories: {
|
|
172
182
|
correctness: "error";
|
|
@@ -256,7 +266,7 @@ declare const _default: {
|
|
|
256
266
|
'typescript/prefer-as-const': "error";
|
|
257
267
|
'typescript/triple-slash-reference': "error";
|
|
258
268
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
259
|
-
accessibility:
|
|
269
|
+
accessibility: "no-public";
|
|
260
270
|
}];
|
|
261
271
|
'eslint/id-length': "off";
|
|
262
272
|
'eslint/sort-keys': "off";
|
|
@@ -266,7 +276,7 @@ declare const _default: {
|
|
|
266
276
|
'eslint/max-params': "off";
|
|
267
277
|
'eslint/no-ternary': "off";
|
|
268
278
|
'eslint/curly': "warn";
|
|
269
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
279
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
270
280
|
'eslint/max-statements': "off";
|
|
271
281
|
'typescript/consistent-return': "off";
|
|
272
282
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -298,12 +308,15 @@ declare const _default: {
|
|
|
298
308
|
'import/no-namespace': "off";
|
|
299
309
|
'import/exports-last': "off";
|
|
300
310
|
'import/no-unassigned-import': "off";
|
|
311
|
+
'import/group-exports': "off";
|
|
312
|
+
'import/consistent-type-specifier-style': "off";
|
|
301
313
|
'unicorn/no-new-array': "off";
|
|
302
314
|
'eslint/no-array-constructor': "warn";
|
|
303
315
|
'typescript/explicit-function-return-type': "off";
|
|
304
316
|
'typescript/explicit-module-boundary-types': "off";
|
|
305
317
|
'unicorn/no-anonymous-default-export': "off";
|
|
306
318
|
'eslint/sort-imports': "off";
|
|
319
|
+
'import/no-relative-parent-imports': "off";
|
|
307
320
|
'eslint/no-magic-numbers': "off";
|
|
308
321
|
'unicorn/prefer-modern-math-apis': "off";
|
|
309
322
|
'eslint/no-use-before-define': "off";
|
|
@@ -323,9 +336,16 @@ declare const _default: {
|
|
|
323
336
|
'oxc/no-async-await': "off";
|
|
324
337
|
};
|
|
325
338
|
}[];
|
|
339
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
326
340
|
env: {
|
|
327
341
|
node: true;
|
|
328
342
|
};
|
|
343
|
+
rules: {
|
|
344
|
+
'eslint/no-underscore-dangle': ["warn", {
|
|
345
|
+
allow: string[];
|
|
346
|
+
}];
|
|
347
|
+
'no-nodejs-modules': "off";
|
|
348
|
+
};
|
|
329
349
|
};
|
|
330
350
|
export default _default;
|
|
331
351
|
//# sourceMappingURL=node.d.ts.map
|
package/dist/node.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAGzD,KAAK,WAAW,GAAG,EAAE,CAAC;AAItB,iBAAS,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAGzD,KAAK,WAAW,GAAG,EAAE,CAAC;AAItB,iBAAS,UAAU,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,WAAW,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAqBjD;AAED,OAAO,EAAE,KAAK,YAAY,EAAE,YAAY,EAAE,UAAU,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEvD,wBAA4B"}
|
package/dist/node.js
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
import { defineConfig } from 'oxlint';
|
|
2
2
|
import { baseConfig } from './base.js';
|
|
3
3
|
// const DEFAULT_OPTIONS: NodeOptions = {};
|
|
4
|
-
function nodeConfig(
|
|
4
|
+
function nodeConfig(options) {
|
|
5
5
|
// const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
6
|
+
const base = baseConfig(options);
|
|
6
7
|
return defineConfig({
|
|
7
|
-
extends: [
|
|
8
|
+
extends: [base],
|
|
9
|
+
// when changing plugins the parent plugins need to be extended, otherwise they are overridden
|
|
10
|
+
plugins: base.plugins,
|
|
8
11
|
env: {
|
|
9
12
|
node: true,
|
|
10
13
|
},
|
|
14
|
+
rules: {
|
|
15
|
+
'eslint/no-underscore-dangle': [
|
|
16
|
+
'warn',
|
|
17
|
+
{ allow: ['__dirname', '__filename'] },
|
|
18
|
+
],
|
|
19
|
+
'no-nodejs-modules': 'off',
|
|
20
|
+
},
|
|
11
21
|
});
|
|
12
22
|
}
|
|
13
23
|
export { defineConfig, nodeConfig };
|
package/dist/node.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.js","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAIvC,2CAA2C;AAE3C,SAAS,UAAU,CAAC,
|
|
1
|
+
{"version":3,"file":"node.js","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAIvC,2CAA2C;AAE3C,SAAS,UAAU,CAAC,OAA8B;IAChD,mDAAmD;IAEnD,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;IAEjC,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,CAAC,IAAI,CAAC;QACf,8FAA8F;QAC9F,OAAO,EAAE,IAAI,CAAC,OAAO;QACrB,GAAG,EAAE;YACH,IAAI,EAAE,IAAI;SACX;QAED,KAAK,EAAE;YACL,6BAA6B,EAAE;gBAC7B,MAAM;gBACN,EAAE,KAAK,EAAE,CAAC,WAAW,EAAE,YAAY,CAAC,EAAE;aACvC;YACD,mBAAmB,EAAE,KAAK;SAC3B;KACF,CAAC,CAAC;AACL,CAAC;AAED,OAAO,EAAqB,YAAY,EAAE,UAAU,EAAE,CAAC;AAEvD,eAAe,UAAU,EAAE,CAAC"}
|
package/dist/react.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { defineConfig, type OxlintConfig } from 'oxlint';
|
|
2
2
|
export type ReactOptions = {};
|
|
3
|
-
declare function reactConfig(
|
|
3
|
+
declare function reactConfig(options?: Partial<ReactOptions>): {
|
|
4
4
|
extends: {
|
|
5
|
-
plugins: ("unicorn" | "typescript")[];
|
|
5
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
6
6
|
jsPlugins: never[];
|
|
7
7
|
categories: {
|
|
8
8
|
correctness: "error";
|
|
@@ -92,7 +92,7 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
92
92
|
'typescript/prefer-as-const': "error";
|
|
93
93
|
'typescript/triple-slash-reference': "error";
|
|
94
94
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
95
|
-
accessibility:
|
|
95
|
+
accessibility: "no-public";
|
|
96
96
|
}];
|
|
97
97
|
'eslint/id-length': "off";
|
|
98
98
|
'eslint/sort-keys': "off";
|
|
@@ -102,7 +102,7 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
102
102
|
'eslint/max-params': "off";
|
|
103
103
|
'eslint/no-ternary': "off";
|
|
104
104
|
'eslint/curly': "warn";
|
|
105
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
105
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
106
106
|
'eslint/max-statements': "off";
|
|
107
107
|
'typescript/consistent-return': "off";
|
|
108
108
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -134,12 +134,15 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
134
134
|
'import/no-namespace': "off";
|
|
135
135
|
'import/exports-last': "off";
|
|
136
136
|
'import/no-unassigned-import': "off";
|
|
137
|
+
'import/group-exports': "off";
|
|
138
|
+
'import/consistent-type-specifier-style': "off";
|
|
137
139
|
'unicorn/no-new-array': "off";
|
|
138
140
|
'eslint/no-array-constructor': "warn";
|
|
139
141
|
'typescript/explicit-function-return-type': "off";
|
|
140
142
|
'typescript/explicit-module-boundary-types': "off";
|
|
141
143
|
'unicorn/no-anonymous-default-export': "off";
|
|
142
144
|
'eslint/sort-imports': "off";
|
|
145
|
+
'import/no-relative-parent-imports': "off";
|
|
143
146
|
'eslint/no-magic-numbers': "off";
|
|
144
147
|
'unicorn/prefer-modern-math-apis': "off";
|
|
145
148
|
'eslint/no-use-before-define': "off";
|
|
@@ -159,7 +162,7 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
159
162
|
'oxc/no-async-await': "off";
|
|
160
163
|
};
|
|
161
164
|
}[];
|
|
162
|
-
plugins: "react"[];
|
|
165
|
+
plugins: ("react" | "unicorn" | "typescript" | "import")[];
|
|
163
166
|
jsPlugins: {
|
|
164
167
|
name: string;
|
|
165
168
|
specifier: string;
|
|
@@ -174,6 +177,8 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
174
177
|
'react/jsx-max-depth': "off";
|
|
175
178
|
'react/no-multi-comp': "off";
|
|
176
179
|
'react/jsx-props-no-spreading': "off";
|
|
180
|
+
'react/forbid-component-props': "off";
|
|
181
|
+
'react/forbid-dom-props': "off";
|
|
177
182
|
};
|
|
178
183
|
overrides: {
|
|
179
184
|
files: string[];
|
|
@@ -226,7 +231,7 @@ declare function reactConfig(_options?: Partial<ReactOptions>): {
|
|
|
226
231
|
export { type OxlintConfig, defineConfig, reactConfig };
|
|
227
232
|
declare const _default: {
|
|
228
233
|
extends: {
|
|
229
|
-
plugins: ("unicorn" | "typescript")[];
|
|
234
|
+
plugins: ("unicorn" | "typescript" | "import")[];
|
|
230
235
|
jsPlugins: never[];
|
|
231
236
|
categories: {
|
|
232
237
|
correctness: "error";
|
|
@@ -316,7 +321,7 @@ declare const _default: {
|
|
|
316
321
|
'typescript/prefer-as-const': "error";
|
|
317
322
|
'typescript/triple-slash-reference': "error";
|
|
318
323
|
'typescript/explicit-member-accessibility': ["warn", {
|
|
319
|
-
accessibility:
|
|
324
|
+
accessibility: "no-public";
|
|
320
325
|
}];
|
|
321
326
|
'eslint/id-length': "off";
|
|
322
327
|
'eslint/sort-keys': "off";
|
|
@@ -326,7 +331,7 @@ declare const _default: {
|
|
|
326
331
|
'eslint/max-params': "off";
|
|
327
332
|
'eslint/no-ternary': "off";
|
|
328
333
|
'eslint/curly': "warn";
|
|
329
|
-
'typescript/consistent-type-definitions': ["warn",
|
|
334
|
+
'typescript/consistent-type-definitions': ["warn", "type"];
|
|
330
335
|
'eslint/max-statements': "off";
|
|
331
336
|
'typescript/consistent-return': "off";
|
|
332
337
|
'unicorn/switch-case-braces': "warn";
|
|
@@ -358,12 +363,15 @@ declare const _default: {
|
|
|
358
363
|
'import/no-namespace': "off";
|
|
359
364
|
'import/exports-last': "off";
|
|
360
365
|
'import/no-unassigned-import': "off";
|
|
366
|
+
'import/group-exports': "off";
|
|
367
|
+
'import/consistent-type-specifier-style': "off";
|
|
361
368
|
'unicorn/no-new-array': "off";
|
|
362
369
|
'eslint/no-array-constructor': "warn";
|
|
363
370
|
'typescript/explicit-function-return-type': "off";
|
|
364
371
|
'typescript/explicit-module-boundary-types': "off";
|
|
365
372
|
'unicorn/no-anonymous-default-export': "off";
|
|
366
373
|
'eslint/sort-imports': "off";
|
|
374
|
+
'import/no-relative-parent-imports': "off";
|
|
367
375
|
'eslint/no-magic-numbers': "off";
|
|
368
376
|
'unicorn/prefer-modern-math-apis': "off";
|
|
369
377
|
'eslint/no-use-before-define': "off";
|
|
@@ -383,7 +391,7 @@ declare const _default: {
|
|
|
383
391
|
'oxc/no-async-await': "off";
|
|
384
392
|
};
|
|
385
393
|
}[];
|
|
386
|
-
plugins: "react"[];
|
|
394
|
+
plugins: ("react" | "unicorn" | "typescript" | "import")[];
|
|
387
395
|
jsPlugins: {
|
|
388
396
|
name: string;
|
|
389
397
|
specifier: string;
|
|
@@ -398,6 +406,8 @@ declare const _default: {
|
|
|
398
406
|
'react/jsx-max-depth': "off";
|
|
399
407
|
'react/no-multi-comp': "off";
|
|
400
408
|
'react/jsx-props-no-spreading': "off";
|
|
409
|
+
'react/forbid-component-props': "off";
|
|
410
|
+
'react/forbid-dom-props': "off";
|
|
401
411
|
};
|
|
402
412
|
overrides: {
|
|
403
413
|
files: string[];
|
package/dist/react.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAGzD,MAAM,MAAM,YAAY,GAAG,EAAE,CAAC;AAI9B,iBAAS,WAAW,CAAC,
|
|
1
|
+
{"version":3,"file":"react.d.ts","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,KAAK,YAAY,EAAE,MAAM,QAAQ,CAAC;AAGzD,MAAM,MAAM,YAAY,GAAG,EAAE,CAAC;AAI9B,iBAAS,WAAW,CAAC,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkFnD;AAED,OAAO,EAAE,KAAK,YAAY,EAAE,YAAY,EAAE,WAAW,EAAE,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAExD,wBAA6B"}
|
package/dist/react.js
CHANGED
|
@@ -1,12 +1,19 @@
|
|
|
1
1
|
import { defineConfig } from 'oxlint';
|
|
2
2
|
import { baseConfig } from './base.js';
|
|
3
3
|
// const DEFAULT_OPTIONS: ReactOptions = {};
|
|
4
|
-
function reactConfig(
|
|
4
|
+
function reactConfig(options) {
|
|
5
5
|
// const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
6
|
+
const base = baseConfig(options);
|
|
6
7
|
return defineConfig({
|
|
7
|
-
extends: [
|
|
8
|
-
plugins: ['react'],
|
|
8
|
+
extends: [base],
|
|
9
|
+
plugins: [...base.plugins, 'react'],
|
|
9
10
|
jsPlugins: [
|
|
11
|
+
// react compiler is not yet supported by oxc
|
|
12
|
+
// https://github.com/oxc-project/oxc/issues/10048
|
|
13
|
+
// this means compiler related rules are not yet supported
|
|
14
|
+
// https://github.com/oxc-project/oxc/issues/1022
|
|
15
|
+
// react compiler port to rust may enable compiler related rules
|
|
16
|
+
// https://github.com/facebook/react/pull/36173
|
|
10
17
|
{ name: 'react-hooks-js', specifier: 'eslint-plugin-react-hooks' },
|
|
11
18
|
{ name: 'react-compiler-js', specifier: 'eslint-plugin-react-compiler' },
|
|
12
19
|
],
|
|
@@ -20,6 +27,9 @@ function reactConfig(_options) {
|
|
|
20
27
|
'react/jsx-max-depth': 'off',
|
|
21
28
|
'react/no-multi-comp': 'off',
|
|
22
29
|
'react/jsx-props-no-spreading': 'off',
|
|
30
|
+
// conflicts with tailwind
|
|
31
|
+
'react/forbid-component-props': 'off',
|
|
32
|
+
'react/forbid-dom-props': 'off',
|
|
23
33
|
},
|
|
24
34
|
overrides: [
|
|
25
35
|
{
|
package/dist/react.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"react.js","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAIvC,4CAA4C;AAE5C,SAAS,WAAW,CAAC,
|
|
1
|
+
{"version":3,"file":"react.js","sourceRoot":"","sources":["../src/react.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AACzD,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AAIvC,4CAA4C;AAE5C,SAAS,WAAW,CAAC,OAA+B;IAClD,mDAAmD;IAEnD,MAAM,IAAI,GAAG,UAAU,CAAC,OAAO,CAAC,CAAC;IAEjC,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,CAAC,IAAI,CAAC;QACf,OAAO,EAAE,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC;QACnC,SAAS,EAAE;YACT,6CAA6C;YAC7C,kDAAkD;YAClD,0DAA0D;YAC1D,iDAAiD;YACjD,gEAAgE;YAChE,+CAA+C;YAC/C,EAAE,IAAI,EAAE,gBAAgB,EAAE,SAAS,EAAE,2BAA2B,EAAE;YAClE,EAAE,IAAI,EAAE,mBAAmB,EAAE,SAAS,EAAE,8BAA8B,EAAE;SACzE;QACD,KAAK,EAAE;YACL,sBAAsB,EAAE,OAAO;YAC/B,uBAAuB,EAAE,MAAM;YAC/B,oCAAoC,EAAE,MAAM;YAC5C,8BAA8B,EAAE,OAAO;YACvC,kCAAkC,EAAE,OAAO;YAE3C,8BAA8B,EAAE,KAAK;YACrC,qBAAqB,EAAE,KAAK;YAC5B,qBAAqB,EAAE,KAAK;YAC5B,8BAA8B,EAAE,KAAK;YAErC,0BAA0B;YAC1B,8BAA8B,EAAE,KAAK;YACrC,wBAAwB,EAAE,KAAK;SAChC;QACD,SAAS,EAAE;YACT;gBACE,KAAK,EAAE,CAAC,kCAAkC,CAAC;gBAC3C,KAAK,EAAE;oBACL,oBAAoB,EAAE,OAAO;oBAC7B,eAAe,EAAE,OAAO;oBACxB,gCAAgC,EAAE,OAAO;oBACzC,8BAA8B,EAAE,OAAO;oBACvC,2BAA2B,EAAE,KAAK;oBAClC,oBAAoB,EAAE,OAAO;oBAC7B,wBAAwB,EAAE,OAAO;oBACjC,+BAA+B,EAAE,OAAO;oBACxC,mEAAmE;oBACnE,gCAAgC,EAAE,OAAO;oBACzC,wBAAwB,EAAE,OAAO;oBACjC,qBAAqB,EAAE,OAAO;oBAC9B,8BAA8B,EAAE,OAAO;oBACvC,sBAAsB,EAAE,OAAO;oBAC/B,6BAA6B,EAAE,OAAO;oBACtC,2BAA2B,EAAE,KAAK;oBAClC,iBAAiB,EAAE,KAAK;oBACxB,0BAA0B,EAAE,KAAK;oBACjC,6BAA6B,EAAE,OAAO;oBACtC,oCAAoC,EAAE,MAAM;oBAC5C,mBAAmB,EAAE,CAAC,MAAM,EAAE,EAAE,QAAQ,EAAE,CAAC,KAAK,CAAC,EAAE,GAAG,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;oBACpE,qBAAqB,EAAE,MAAM;oBAC7B,yBAAyB,EAAE,MAAM;oBACjC,oCAAoC,EAAE,MAAM;oBAC5C,uCAAuC,EAAE,MAAM;oBAC/C,mCAAmC,EAAE,MAAM;iBAC5C;gBACD,OAAO,EAAE;oBACP,uBAAuB,EAAE,UAAU;oBACnC,qBAAqB,EAAE,UAAU;oBACjC,YAAY,EAAE,UAAU;oBACxB,WAAW,EAAE,UAAU;oBACvB,iBAAiB,EAAE,UAAU;oBAC7B,UAAU,EAAE,UAAU;oBACtB,kBAAkB,EAAE,UAAU;iBAC/B;gBACD,OAAO,EAAE,CAAC,QAAQ,EAAE,UAAU,CAAC;gBAC/B,GAAG,EAAE;oBACH,OAAO,EAAE,IAAI;oBACb,IAAI,EAAE,IAAI;iBACX;aACF;SACF;KACF,CAAC,CAAC;AACL,CAAC;AAED,OAAO,EAAqB,YAAY,EAAE,WAAW,EAAE,CAAC;AAExD,eAAe,WAAW,EAAE,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4mbl/lint",
|
|
3
|
-
"version": "0.0.0-alpha.
|
|
3
|
+
"version": "0.0.0-alpha.f0f62f4",
|
|
4
4
|
"description": "Linting configuration for various environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "4mbl",
|
|
@@ -32,16 +32,13 @@
|
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
35
|
-
"eslint-plugin-react-hooks": "
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"jiti": "^2.6.1",
|
|
39
|
-
"oxlint": "^1.62.0",
|
|
40
|
-
"oxlint-tsgolint": "^0.21.1"
|
|
35
|
+
"eslint-plugin-react-hooks": "7.1.1",
|
|
36
|
+
"oxlint": "1.69.x",
|
|
37
|
+
"oxlint-tsgolint": "0.23.x"
|
|
41
38
|
},
|
|
42
39
|
"devDependencies": {
|
|
43
|
-
"@types/node": "^24.
|
|
44
|
-
"@4mbl/tsconfig": "0.0.0-alpha.
|
|
40
|
+
"@types/node": "^24.13.1",
|
|
41
|
+
"@4mbl/tsconfig": "0.0.0-alpha.f0f62f4"
|
|
45
42
|
},
|
|
46
43
|
"scripts": {
|
|
47
44
|
"build": "tsc"
|