@4mbl/lint 1.0.0-beta.17 → 1.0.0-beta.18
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 +6 -0
- package/dist/next.d.ts +2 -2
- package/dist/react.d.ts +2 -2
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
package/dist/next.d.ts
CHANGED
|
@@ -215,7 +215,7 @@ declare function nextConfig(options?: Partial<NextOptions>): {
|
|
|
215
215
|
'react/require-render-return': "error";
|
|
216
216
|
'import/no-anonymous-default-export': "warn";
|
|
217
217
|
'jsx-a11y/alt-text': ["warn", {
|
|
218
|
-
elements:
|
|
218
|
+
elements: "img"[];
|
|
219
219
|
img: string[];
|
|
220
220
|
}];
|
|
221
221
|
'jsx-a11y/aria-props': "warn";
|
|
@@ -484,7 +484,7 @@ declare const _default: {
|
|
|
484
484
|
'react/require-render-return': "error";
|
|
485
485
|
'import/no-anonymous-default-export': "warn";
|
|
486
486
|
'jsx-a11y/alt-text': ["warn", {
|
|
487
|
-
elements:
|
|
487
|
+
elements: "img"[];
|
|
488
488
|
img: string[];
|
|
489
489
|
}];
|
|
490
490
|
'jsx-a11y/aria-props': "warn";
|
package/dist/react.d.ts
CHANGED
|
@@ -203,7 +203,7 @@ declare function reactConfig(options?: Partial<ReactOptions>): {
|
|
|
203
203
|
'react/require-render-return': "error";
|
|
204
204
|
'import/no-anonymous-default-export': "warn";
|
|
205
205
|
'jsx-a11y/alt-text': ["warn", {
|
|
206
|
-
elements:
|
|
206
|
+
elements: "img"[];
|
|
207
207
|
img: string[];
|
|
208
208
|
}];
|
|
209
209
|
'jsx-a11y/aria-props': "warn";
|
|
@@ -432,7 +432,7 @@ declare const _default: {
|
|
|
432
432
|
'react/require-render-return': "error";
|
|
433
433
|
'import/no-anonymous-default-export': "warn";
|
|
434
434
|
'jsx-a11y/alt-text': ["warn", {
|
|
435
|
-
elements:
|
|
435
|
+
elements: "img"[];
|
|
436
436
|
img: string[];
|
|
437
437
|
}];
|
|
438
438
|
'jsx-a11y/aria-props': "warn";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4mbl/lint",
|
|
3
|
-
"version": "1.0.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.18",
|
|
4
4
|
"description": "Linting configuration for various environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "4mbl",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
35
35
|
"eslint-plugin-react-hooks": "7.1.1",
|
|
36
|
-
"oxlint": "1.
|
|
36
|
+
"oxlint": "1.70.x",
|
|
37
37
|
"oxlint-tsgolint": "0.23.x"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@types/node": "^24.13.
|
|
41
|
-
"@4mbl/tsconfig": "5.0.0-beta.
|
|
40
|
+
"@types/node": "^24.13.2",
|
|
41
|
+
"@4mbl/tsconfig": "5.0.0-beta.1"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsc"
|