feat: add linter

This commit is contained in:
Sun-ZhenXing
2026-02-19 16:21:45 +08:00
parent 3360ca01a2
commit be71b96317
37 changed files with 3608 additions and 100 deletions

19
package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "helm-anything",
"version": "1.0.0",
"description": "Helm command templates for quick service deployment",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": ["helm", "kubernetes", "deployment"],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.25.0",
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"eslint": "^10.0.0"
}
}