style: lint code

This commit is contained in:
Sun-ZhenXing
2026-02-23 17:41:05 +08:00
parent ced072de66
commit 7e14b01b78
240 changed files with 4301 additions and 1539 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "compose-anything",
"version": "1.0.0",
"packageManager": "pnpm@10.25.0",
"description": "Deploy anything with Docker Compose",
"author": "",
"license": "ISC",
"keywords": [
"compose",
"docker",
"deployment"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@antfu/eslint-config": "^7.4.3",
"eslint": "^10.0.1"
}
}