@meteorlxy/eslint-config 6.14.0 → 7.0.0
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/index.cjs +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.mts +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +12 -12
package/dist/index.cjs
CHANGED
|
@@ -700,7 +700,7 @@ const importsRules = {
|
|
|
700
700
|
}],
|
|
701
701
|
"import/no-useless-path-segments": ["error", { commonjs: true }],
|
|
702
702
|
"import/no-webpack-loader-syntax": "error",
|
|
703
|
-
"import/order": ["
|
|
703
|
+
"import/order": ["off", {
|
|
704
704
|
"groups": [
|
|
705
705
|
"builtin",
|
|
706
706
|
"external",
|
package/dist/index.d.cts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { Config } from "eslint/config";
|
|
2
1
|
import { FlatGitignoreOptions } from "eslint-config-flat-gitignore";
|
|
2
|
+
import { Config } from "eslint/config";
|
|
3
3
|
|
|
4
4
|
//#region \0rolldown/runtime.js
|
|
5
5
|
//#endregion
|
|
@@ -671,7 +671,7 @@ declare const importsRules: {
|
|
|
671
671
|
commonjs: boolean;
|
|
672
672
|
}];
|
|
673
673
|
'import/no-webpack-loader-syntax': "error";
|
|
674
|
-
'import/order': ["
|
|
674
|
+
'import/order': ["off", {
|
|
675
675
|
groups: string[];
|
|
676
676
|
'newlines-between': string;
|
|
677
677
|
alphabetize: {
|
package/dist/index.d.mts
CHANGED
package/dist/index.mjs
CHANGED
|
@@ -662,7 +662,7 @@ const importsRules = {
|
|
|
662
662
|
}],
|
|
663
663
|
"import/no-useless-path-segments": ["error", { commonjs: true }],
|
|
664
664
|
"import/no-webpack-loader-syntax": "error",
|
|
665
|
-
"import/order": ["
|
|
665
|
+
"import/order": ["off", {
|
|
666
666
|
"groups": [
|
|
667
667
|
"builtin",
|
|
668
668
|
"external",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meteorlxy/eslint-config",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.0",
|
|
4
4
|
"description": "meteorlxy eslint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"config",
|
|
@@ -8,13 +8,19 @@
|
|
|
8
8
|
"meteorlxy"
|
|
9
9
|
],
|
|
10
10
|
"homepage": "https://github.com/meteorlxy/configs",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"author": "meteorlxy <meteor.lxy@foxmail.com>",
|
|
11
13
|
"repository": {
|
|
12
14
|
"type": "git",
|
|
13
15
|
"url": "git+https://github.com/meteorlxy/configs.git"
|
|
14
16
|
},
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
+
"files": [
|
|
18
|
+
"./dist"
|
|
19
|
+
],
|
|
17
20
|
"type": "module",
|
|
21
|
+
"main": "./dist/index.cjs",
|
|
22
|
+
"module": "./dist/index.mjs",
|
|
23
|
+
"types": "./dist/index.d.cts",
|
|
18
24
|
"exports": {
|
|
19
25
|
".": {
|
|
20
26
|
"import": "./dist/index.mjs",
|
|
@@ -22,12 +28,9 @@
|
|
|
22
28
|
},
|
|
23
29
|
"./package.json": "./package.json"
|
|
24
30
|
},
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"files": [
|
|
29
|
-
"./dist"
|
|
30
|
-
],
|
|
31
|
+
"publishConfig": {
|
|
32
|
+
"access": "public"
|
|
33
|
+
},
|
|
31
34
|
"dependencies": {
|
|
32
35
|
"@eslint/core": "^0.17.0",
|
|
33
36
|
"@eslint/markdown": "^7.5.1",
|
|
@@ -83,9 +86,6 @@
|
|
|
83
86
|
"engines": {
|
|
84
87
|
"node": ">=20.0.0"
|
|
85
88
|
},
|
|
86
|
-
"publishConfig": {
|
|
87
|
-
"access": "public"
|
|
88
|
-
},
|
|
89
89
|
"scripts": {
|
|
90
90
|
"build": "tsdown",
|
|
91
91
|
"check-rules": "tsx ./scripts/check-rules-coverage.ts",
|