@moso/eslint-config 0.3.5 → 1.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/LICENSE +21 -21
- package/README.md +498 -0
- package/dist/index.d.ts +15652 -0
- package/dist/index.js +1873 -0
- package/package.json +112 -36
- package/index.js +0 -6
package/package.json
CHANGED
|
@@ -1,37 +1,113 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "@moso/eslint-config",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"packageManager": "bun@1.2.5",
|
|
6
|
+
"description": "moso's shared ESLint config",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "Morten Sørensen",
|
|
9
|
+
"email": "morten@moso.dev",
|
|
10
|
+
"url": "https://moso.dev"
|
|
11
|
+
},
|
|
12
|
+
"license": "MIT",
|
|
13
|
+
"homepage": "https://github.com/moso/eslint-config",
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/moso/eslint-config/eslint-config.git"
|
|
17
|
+
},
|
|
18
|
+
"bugs": {
|
|
19
|
+
"url": "https://github.com/moso/eslint-config/issues"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"eslint-config",
|
|
23
|
+
"eslint",
|
|
24
|
+
"config",
|
|
25
|
+
"eslint-config moso",
|
|
26
|
+
"moso",
|
|
27
|
+
"typescript",
|
|
28
|
+
"react",
|
|
29
|
+
"vue"
|
|
30
|
+
],
|
|
31
|
+
"exports": {
|
|
32
|
+
".": "./dist/index.js"
|
|
33
|
+
},
|
|
34
|
+
"main": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"files": ["dist"],
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "bun run typegen && tsup --clean --dts",
|
|
39
|
+
"build:inspector": "bun run build && bunx @eslint/config-inspector build",
|
|
40
|
+
"dev": "bunx @eslint/config-inspector --config eslint.config.ts",
|
|
41
|
+
"lint": "eslint",
|
|
42
|
+
"prepack": "bun run build",
|
|
43
|
+
"prepare": "bun run simple-git-hooks",
|
|
44
|
+
"release": "bumpp && bun publish",
|
|
45
|
+
"test": "vitest",
|
|
46
|
+
"typecheck": "tsc --noEmit",
|
|
47
|
+
"typegen": "tsx src/typegen/typegen.ts",
|
|
48
|
+
"watch": "tsup --watch"
|
|
49
|
+
},
|
|
50
|
+
"peerDependencies": {
|
|
51
|
+
"eslint": "^9.10.0"
|
|
52
|
+
},
|
|
53
|
+
"dependencies": {
|
|
54
|
+
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
|
|
55
|
+
"@eslint-react/eslint-plugin": "^1.34.1",
|
|
56
|
+
"@stylistic/eslint-plugin": "^4.2.0",
|
|
57
|
+
"@typescript-eslint/eslint-plugin": "^8.26.1",
|
|
58
|
+
"@typescript-eslint/parser": "^8.26.1",
|
|
59
|
+
"@vitest/eslint-plugin": "^1.1.37",
|
|
60
|
+
"eslint-config-flat-gitignore": "^2.1.0",
|
|
61
|
+
"eslint-flat-config-utils": "^2.0.1",
|
|
62
|
+
"eslint-merge-processors": "^2.0.0",
|
|
63
|
+
"eslint-plugin-antfu": "^3.1.1",
|
|
64
|
+
"eslint-plugin-import-x": "^4.8.0",
|
|
65
|
+
"eslint-plugin-jsdoc": "^50.6.6",
|
|
66
|
+
"eslint-plugin-jsonc": "^2.19.1",
|
|
67
|
+
"eslint-plugin-n": "^17.16.2",
|
|
68
|
+
"eslint-plugin-no-only-tests": "^3.3.0",
|
|
69
|
+
"eslint-plugin-perfectionist": "^4.10.1",
|
|
70
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
71
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
72
|
+
"eslint-plugin-unicorn": "^57.0.0",
|
|
73
|
+
"eslint-plugin-unused-imports": "^4.1.4",
|
|
74
|
+
"eslint-plugin-vue": "^10.0.0",
|
|
75
|
+
"eslint-plugin-yml": "^1.17.0",
|
|
76
|
+
"eslint-processor-vue-blocks": "^2.0.0",
|
|
77
|
+
"globals": "^16.0.0",
|
|
78
|
+
"jsonc-eslint-parser": "^2.4.0",
|
|
79
|
+
"local-pkg": "^1.1.1",
|
|
80
|
+
"vue-eslint-parser": "^10.1.1",
|
|
81
|
+
"yaml-eslint-parser": "^1.3.0"
|
|
82
|
+
},
|
|
83
|
+
"devDependencies": {
|
|
84
|
+
"@eslint-types/jsdoc": "^48.2.2",
|
|
85
|
+
"@eslint-types/typescript-eslint": "^7.5.0",
|
|
86
|
+
"@eslint-types/unicorn": "^52.0.0",
|
|
87
|
+
"@eslint/config-inspector": "^1.0.2",
|
|
88
|
+
"@types/eslint": "^9.6.1",
|
|
89
|
+
"@types/node": "^22.13.10",
|
|
90
|
+
"bumpp": "^10.1.0",
|
|
91
|
+
"eslint": "^9.22.0",
|
|
92
|
+
"eslint-typegen": "^2.1.0",
|
|
93
|
+
"lint-staged": "^15.5.0",
|
|
94
|
+
"simple-git-hooks": "^2.11.1",
|
|
95
|
+
"tsup": "^8.4.0",
|
|
96
|
+
"tsx": "^4.19.3",
|
|
97
|
+
"typescript": "^5.8.2",
|
|
98
|
+
"vitest": "^3.0.8",
|
|
99
|
+
"vue": "^3.5.13"
|
|
100
|
+
},
|
|
101
|
+
"resolutions": {
|
|
102
|
+
"@eslint-community/eslint-utils": "^4.4.1",
|
|
103
|
+
"@typescript-eslint/utils": "^8.26.1",
|
|
104
|
+
"eslint": "^9.22.0",
|
|
105
|
+
"tsx": "^4.19.3"
|
|
106
|
+
},
|
|
107
|
+
"simple-git-hooks": {
|
|
108
|
+
"pre-commit": "bunx lint-staged"
|
|
109
|
+
},
|
|
110
|
+
"lint-staged": {
|
|
111
|
+
"*": "eslint --fix"
|
|
112
|
+
}
|
|
113
|
+
}
|