eslint-plugin-kirklin 0.9.1 → 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/README.md +7 -1
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +82 -82
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
[![npm version][npm-version-src]][npm-version-href]
|
|
4
4
|
[![npm downloads][npm-downloads-src]][npm-downloads-href]
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
Kirklin extended ESLint rules. For [kirklin/eslint-config](https://github.com/kirklin/eslint-config).
|
|
7
7
|
|
|
8
8
|
[Rules List](./src/rules)
|
|
9
9
|
|
|
@@ -11,3 +11,9 @@ Anthony extended ESLint rules. For [kirklin/eslint-config](https://github.com/ki
|
|
|
11
11
|
|
|
12
12
|
[MIT](./LICENSE) License © 2023-PRESENT [Kirk Lin](https://github.com/kirklin)
|
|
13
13
|
|
|
14
|
+
<!-- Badges -->
|
|
15
|
+
|
|
16
|
+
[npm-version-src]: https://img.shields.io/npm/v/eslint-plugin-kirklin?style=flat&colorA=080f12&colorB=3491fa
|
|
17
|
+
[npm-version-href]: https://npmjs.com/package/eslint-plugin-kirklin
|
|
18
|
+
[npm-downloads-src]: https://img.shields.io/npm/dm/eslint-plugin-kirklin?style=flat&colorA=080f12&colorB=3491fa
|
|
19
|
+
[npm-downloads-href]: https://npmjs.com/package/eslint-plugin-kirklin
|
package/dist/index.cjs
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "eslint-plugin-kirklin",
|
|
3
|
-
"type": "module",
|
|
4
|
-
"version": "0.
|
|
5
|
-
"packageManager": "pnpm@8.10.2",
|
|
6
|
-
"description": "Kirk Lin extended ESLint rules",
|
|
7
|
-
"author": "Kirk Lin (https://github.com/kirklin)",
|
|
8
|
-
"license": "MIT",
|
|
9
|
-
"funding": "https://www.buymeacoffee.com/linkirk",
|
|
10
|
-
"homepage": "https://github.com/kirklin/eslint-plugin-kirklin#readme",
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "git+https://github.com/kirklin/eslint-plugin-kirklin.git"
|
|
14
|
-
},
|
|
15
|
-
"bugs": "https://github.com/kirklin/eslint-plugin-kirklin/issues",
|
|
16
|
-
"keywords": [],
|
|
17
|
-
"sideEffects": false,
|
|
18
|
-
"exports": {
|
|
19
|
-
".": {
|
|
20
|
-
"types": "./dist/index.d.ts",
|
|
21
|
-
"import": "./dist/index.mjs",
|
|
22
|
-
"require": "./dist/index.cjs"
|
|
23
|
-
}
|
|
24
|
-
},
|
|
25
|
-
"main": "./dist/index.mjs",
|
|
26
|
-
"module": "./dist/index.mjs",
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"files": [
|
|
29
|
-
"dist"
|
|
30
|
-
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "unbuild",
|
|
33
|
-
"dev": "unbuild --stub",
|
|
34
|
-
"lint": "pnpm run dev && eslint .",
|
|
35
|
-
"lint:fix": "pnpm run dev && eslint . --fix",
|
|
36
|
-
"prepublishOnly": "nr build",
|
|
37
|
-
"release": "bumpp && npm publish",
|
|
38
|
-
"start": "esno src/index.ts",
|
|
39
|
-
"test": "vitest",
|
|
40
|
-
"typecheck": "tsc --noEmit",
|
|
41
|
-
"prepare": "simple-git-hooks"
|
|
42
|
-
},
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"eslint": "*"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@antfu/ni": "^0.21.8",
|
|
48
|
-
"@kirklin/eslint-config": "^0.
|
|
49
|
-
"@types/eslint": "^8.44.6",
|
|
50
|
-
"@types/lodash.merge": "^4.6.8",
|
|
51
|
-
"@types/node": "^20.8.10",
|
|
52
|
-
"@types/semver": "^7.5.4",
|
|
53
|
-
"@typescript-eslint/rule-tester": "^6.9.1",
|
|
54
|
-
"@typescript-eslint/typescript-estree": "^6.9.1",
|
|
55
|
-
"@typescript-eslint/utils": "^6.9.1",
|
|
56
|
-
"ajv": "^
|
|
57
|
-
"bumpp": "^9.2.0",
|
|
58
|
-
"eslint": "^8.
|
|
59
|
-
"eslint-define-config": "^1.24.1",
|
|
60
|
-
"esno": "^0.17.0",
|
|
61
|
-
"lint-staged": "^15.0.2",
|
|
62
|
-
"lodash.merge": "4.6.2",
|
|
63
|
-
"pnpm": "^8.10.2",
|
|
64
|
-
"rimraf": "^5.0.5",
|
|
65
|
-
"semver": "^7.5.4",
|
|
66
|
-
"simple-git-hooks": "^2.9.0",
|
|
67
|
-
"tsup": "^7.2.0",
|
|
68
|
-
"typescript": "^5.2.2",
|
|
69
|
-
"unbuild": "^2.0.0",
|
|
70
|
-
"vite": "^4.5.0",
|
|
71
|
-
"vitest": "^0.34.6"
|
|
72
|
-
},
|
|
73
|
-
"resolutions": {
|
|
74
|
-
"eslint-plugin-kirklin": "workspace:*"
|
|
75
|
-
},
|
|
76
|
-
"simple-git-hooks": {
|
|
77
|
-
"pre-commit": "pnpm lint-staged"
|
|
78
|
-
},
|
|
79
|
-
"lint-staged": {
|
|
80
|
-
"*": "eslint --fix"
|
|
81
|
-
}
|
|
82
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "eslint-plugin-kirklin",
|
|
3
|
+
"type": "module",
|
|
4
|
+
"version": "1.0.0",
|
|
5
|
+
"packageManager": "pnpm@8.10.2",
|
|
6
|
+
"description": "Kirk Lin extended ESLint rules",
|
|
7
|
+
"author": "Kirk Lin (https://github.com/kirklin)",
|
|
8
|
+
"license": "MIT",
|
|
9
|
+
"funding": "https://www.buymeacoffee.com/linkirk",
|
|
10
|
+
"homepage": "https://github.com/kirklin/eslint-plugin-kirklin#readme",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "git+https://github.com/kirklin/eslint-plugin-kirklin.git"
|
|
14
|
+
},
|
|
15
|
+
"bugs": "https://github.com/kirklin/eslint-plugin-kirklin/issues",
|
|
16
|
+
"keywords": [],
|
|
17
|
+
"sideEffects": false,
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.mjs",
|
|
22
|
+
"require": "./dist/index.cjs"
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
"main": "./dist/index.mjs",
|
|
26
|
+
"module": "./dist/index.mjs",
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"files": [
|
|
29
|
+
"dist"
|
|
30
|
+
],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "unbuild",
|
|
33
|
+
"dev": "unbuild --stub",
|
|
34
|
+
"lint": "pnpm run dev && eslint .",
|
|
35
|
+
"lint:fix": "pnpm run dev && eslint . --fix",
|
|
36
|
+
"prepublishOnly": "nr build",
|
|
37
|
+
"release": "bumpp && npm publish",
|
|
38
|
+
"start": "esno src/index.ts",
|
|
39
|
+
"test": "vitest",
|
|
40
|
+
"typecheck": "tsc --noEmit",
|
|
41
|
+
"prepare": "simple-git-hooks"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"eslint": "*"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@antfu/ni": "^0.21.8",
|
|
48
|
+
"@kirklin/eslint-config": "^1.0.0",
|
|
49
|
+
"@types/eslint": "^8.44.6",
|
|
50
|
+
"@types/lodash.merge": "^4.6.8",
|
|
51
|
+
"@types/node": "^20.8.10",
|
|
52
|
+
"@types/semver": "^7.5.4",
|
|
53
|
+
"@typescript-eslint/rule-tester": "^6.9.1",
|
|
54
|
+
"@typescript-eslint/typescript-estree": "^6.9.1",
|
|
55
|
+
"@typescript-eslint/utils": "^6.9.1",
|
|
56
|
+
"ajv": "^8.12.0",
|
|
57
|
+
"bumpp": "^9.2.0",
|
|
58
|
+
"eslint": "^8.53.0",
|
|
59
|
+
"eslint-define-config": "^1.24.1",
|
|
60
|
+
"esno": "^0.17.0",
|
|
61
|
+
"lint-staged": "^15.0.2",
|
|
62
|
+
"lodash.merge": "4.6.2",
|
|
63
|
+
"pnpm": "^8.10.2",
|
|
64
|
+
"rimraf": "^5.0.5",
|
|
65
|
+
"semver": "^7.5.4",
|
|
66
|
+
"simple-git-hooks": "^2.9.0",
|
|
67
|
+
"tsup": "^7.2.0",
|
|
68
|
+
"typescript": "^5.2.2",
|
|
69
|
+
"unbuild": "^2.0.0",
|
|
70
|
+
"vite": "^4.5.0",
|
|
71
|
+
"vitest": "^0.34.6"
|
|
72
|
+
},
|
|
73
|
+
"resolutions": {
|
|
74
|
+
"eslint-plugin-kirklin": "workspace:*"
|
|
75
|
+
},
|
|
76
|
+
"simple-git-hooks": {
|
|
77
|
+
"pre-commit": "pnpm lint-staged"
|
|
78
|
+
},
|
|
79
|
+
"lint-staged": {
|
|
80
|
+
"*": "eslint --fix"
|
|
81
|
+
}
|
|
82
|
+
}
|