1
0
mirror of https://github.com/Minionguyjpro/Inno-Setup-Action synced 2026-02-18 17:41:18 +01:00

refactor: update linting configuration and remove eslintConfig from package.json

- Changed lint script to target JavaScript files in the src directory.
- Removed eslintConfig section as it is no longer needed.
This commit is contained in:
Minionguyjpro
2025-06-18 20:23:01 +02:00
parent 92fdc4cf25
commit 1fa3b88982
4 changed files with 518 additions and 717 deletions

View File

@@ -29,16 +29,13 @@
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write **/*.js",
"format:check": "prettier --check **/*.js",
"lint": "npx eslint . -c ./.github/linters/eslint.config.js",
"lint": "eslint src/**/*.js",
"package": "ncc build src/index.js --license licenses.txt",
"package:watch": "npm run package -- --watch",
"test": "jest",
"all": "npm run format:write && npm run lint && npm run package"
},
"license": "MIT",
"eslintConfig": {
"extends": "./.github/linters/eslint.config.js"
},
"jest": {
"verbose": true,
"clearMocks": true,