We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f7251f commit e07a3b1Copy full SHA for e07a3b1
.ci-scripts/ci-eslint.sh
@@ -2,8 +2,7 @@
2
set -e
3
4
## NPM eslint
5
-mkdir node_modules
6
npm install --save-dev eslint
7
8
## NPM test
9
-find ./js -type f -name "*.js" | xargs node_modules/.bin/eslint -c .eslint.config.js
+find ./js -type f -name "*.js" | xargs node_modules/.bin/eslint --stats -c ./.eslint.config.js
.github/workflows/continuous-tests.yml
@@ -14,7 +14,7 @@ jobs:
14
- uses: actions/checkout@v4
15
- uses: actions/setup-node@v4
16
with:
17
- node-version: '16'
+ node-version: "21"
18
- name: eslint
19
run: chmod +x .ci-scripts/ci-eslint.sh && .ci-scripts/ci-eslint.sh
20
.gitignore
@@ -2,3 +2,6 @@ build*/
subprojects/libquick*/
*.so
old/
+node_modules/
+package.json
+package-lock.json
0 commit comments