TOOLS: Enable linting in test folder (#2337)

This commit is contained in:
catloversg
2025-10-07 13:48:18 +07:00
committed by GitHub
parent 0d1f5f3eeb
commit 1883af6c38
2 changed files with 18 additions and 16 deletions

View File

@@ -123,8 +123,8 @@
"start:dev": "webpack serve --progress --mode development",
"build": "bash ./tools/build.sh production",
"build:dev": "bash ./tools/build.sh development",
"lint": "eslint --fix --ext js,jsx,ts,tsx --max-warnings 0 src",
"lint:report": "eslint --ext js,jsx,ts,tsx --max-warnings 0 src",
"lint": "eslint --fix --ext js,jsx,ts,tsx --max-warnings 0 src test",
"lint:report": "eslint --ext js,jsx,ts,tsx --max-warnings 0 src test",
"preinstall": "node ./tools/engines-check/engines-check.js",
"test": "jest",
"test:watch": "jest --watch",