@rotki/eslint-plugin 0.0.1
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.md +660 -0
- package/README.md +16 -0
- package/dist/configs/base.d.ts +5 -0
- package/dist/configs/base.js +5 -0
- package/dist/configs/recommended.d.ts +18 -0
- package/dist/configs/recommended.js +18 -0
- package/dist/configs.d.ts +24 -0
- package/dist/configs.js +10 -0
- package/dist/index.d.ts +29 -0
- package/dist/index.js +11 -0
- package/dist/rules/no-deprecated-classes.d.ts +2 -0
- package/dist/rules/no-deprecated-classes.js +97 -0
- package/dist/rules.d.ts +4 -0
- package/dist/rules.js +8 -0
- package/dist/types/eslint.d.ts +212 -0
- package/dist/types/eslint.js +2 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/index.js +19 -0
- package/dist/types/types.d.ts +38 -0
- package/dist/types/types.js +2 -0
- package/dist/types/vue-parser-services.d.ts +32 -0
- package/dist/types/vue-parser-services.js +2 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.js +20 -0
- package/dist/utils/rule.d.ts +2 -0
- package/dist/utils/rule.js +7 -0
- package/dist/utils.d.ts +7 -0
- package/dist/utils.js +30 -0
- package/package.json +71 -0
package/package.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@rotki/eslint-plugin",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"packageManager": "pnpm@8.14.1",
|
|
5
|
+
"type": "commonjs",
|
|
6
|
+
"license": "AGPL-3.0",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/rotki/eslint-plugin/issues"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/rotki/eslint-plugin.git"
|
|
13
|
+
},
|
|
14
|
+
"author": "Rotki Solutions GmbH <info@rotki.com>",
|
|
15
|
+
"files": [
|
|
16
|
+
"dist"
|
|
17
|
+
],
|
|
18
|
+
"main": "dist/index.js",
|
|
19
|
+
"types": "dist/index.d.ts",
|
|
20
|
+
"peerDependencies": {
|
|
21
|
+
"eslint": "^8.0.0"
|
|
22
|
+
},
|
|
23
|
+
"dependencies": {
|
|
24
|
+
"@typescript-eslint/utils": "6.18.1",
|
|
25
|
+
"jsonc-eslint-parser": "2.4.0",
|
|
26
|
+
"vue-eslint-parser": "9.4.0",
|
|
27
|
+
"yaml-eslint-parser": "1.2.2"
|
|
28
|
+
},
|
|
29
|
+
"devDependencies": {
|
|
30
|
+
"@commitlint/cli": "18.4.4",
|
|
31
|
+
"@commitlint/config-conventional": "18.4.4",
|
|
32
|
+
"@rotki/eslint-config": "1.1.2",
|
|
33
|
+
"@types/eslint": "8.56.1",
|
|
34
|
+
"@types/node": "18",
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "6.18.1",
|
|
36
|
+
"@typescript-eslint/parser": "6.18.1",
|
|
37
|
+
"@typescript-eslint/rule-tester": "6.18.1",
|
|
38
|
+
"bumpp": "9.2.1",
|
|
39
|
+
"eslint": "8.56.0",
|
|
40
|
+
"husky": "8.0.3",
|
|
41
|
+
"lint-staged": "15.2.0",
|
|
42
|
+
"mocha": "10.2.0",
|
|
43
|
+
"nyc": "15.1.0",
|
|
44
|
+
"rimraf": "5.0.5",
|
|
45
|
+
"ts-node": "10.9.2",
|
|
46
|
+
"typescript": "5.3.3",
|
|
47
|
+
"vitepress": "1.0.0-rc.36"
|
|
48
|
+
},
|
|
49
|
+
"engines": {
|
|
50
|
+
"node": ">=18.0.0",
|
|
51
|
+
"pnpm": ">=8 <9"
|
|
52
|
+
},
|
|
53
|
+
"lint-staged": {
|
|
54
|
+
"*.{js,cjs,ts,vue,yml,json,md}": "eslint"
|
|
55
|
+
},
|
|
56
|
+
"scripts": {
|
|
57
|
+
"clean": "rimraf .nyc_output coverage dist docs/.vitepress/dist",
|
|
58
|
+
"coverage": "nyc report --reporter lcov && opener coverage/lcov-report/index.html",
|
|
59
|
+
"generate": "ts-node scripts/update.ts",
|
|
60
|
+
"lint": "eslint .",
|
|
61
|
+
"lint:fix": "eslint . --fix",
|
|
62
|
+
"build": "tsc --project ./tsconfig.build.json",
|
|
63
|
+
"test": "mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\"",
|
|
64
|
+
"test:debug": "mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\"",
|
|
65
|
+
"test:coverage": "nyc mocha --require ts-node/register/transpile-only \"./tests/**/*.ts\" --timeout 60000",
|
|
66
|
+
"new": "ts-node ./scripts/new-rule.ts",
|
|
67
|
+
"docs": "vitepress dev docs",
|
|
68
|
+
"docs:build": "vitepress build docs",
|
|
69
|
+
"release": "bumpp -r --no-push"
|
|
70
|
+
}
|
|
71
|
+
}
|