|
23 | 23 | "format-tools:py": "black --diff --check tools", |
24 | 24 | "lint": "npm-run-all lint:*", |
25 | 25 | "lint:src": "npm-run-all lint-src:*", |
26 | | - "lint-src:js": "npx eslint --ext .js,.cjs,.mjs src tests", |
| 26 | + "lint-src:js": "npx eslint src tests", |
27 | 27 | "lint:docs": "npm-run-all lint-docs:*", |
28 | | - "lint-docs:js": "npx eslint --ext .js,.cjs,.mjs docs", |
| 28 | + "lint-docs:js": "npx eslint docs", |
29 | 29 | "lint:tools": "npm-run-all lint-tools:*", |
30 | | - "lint-tools:js": "npx eslint --ext .js,.cjs,.mjs tools", |
| 30 | + "lint-tools:js": "npx eslint tools", |
31 | 31 | "lint-tools:py": "pylint tools", |
32 | 32 | "type": "npm-run-all type:*", |
33 | 33 | "type:src": "npm-run-all type-src:*", |
|
58 | 58 | "fix-format-tools:py": "black tools", |
59 | 59 | "fix-lint": "npm-run-all fix-lint:*", |
60 | 60 | "fix-lint:src": "npm-run-all fix-lint-src:*", |
61 | | - "fix-lint-src:js": "npx eslint --ext .js,.cjs,.mjs --fix src tests", |
| 61 | + "fix-lint-src:js": "npx eslint --fix src tests", |
62 | 62 | "fix-lint:docs": "npm-run-all fix-lint-docs:*", |
63 | | - "fix-lint-docs:js": "npx eslint --ext .js,.cjs,.mjs --fix docs", |
| 63 | + "fix-lint-docs:js": "npx eslint --fix docs", |
64 | 64 | "fix-lint:tools": "npm-run-all fix-lint-tools:*", |
65 | | - "fix-lint-tools:js": "npx eslint --ext .js,.cjs,.mjs --fix tools", |
| 65 | + "fix-lint-tools:js": "npx eslint --fix tools", |
66 | 66 | "build-docs": "mkdocs build -f ./tools/docs/mkdocs.yml", |
67 | 67 | "deploy-docs": "python ./tools/docs/deploy.py", |
68 | 68 | "build": "python ./tools/ci/version.py False && rm -rf dist build && rollup -c && mkdir build && npm pack --pack-destination build && tar -ztvf build/*.tgz" |
|
0 commit comments