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 c1ccf1e commit a5b9c6eCopy full SHA for a5b9c6e
.github/workflows/code-health-tools.yml
@@ -92,9 +92,9 @@ jobs:
92
- name: Run Prettier
93
run: |
94
npm run format-check
95
- - name: Run ESLint for /tools
+ - name: Run ESLint on JS files
96
97
- npm run lint-tools
+ npm run lint-js
98
99
e2e-tests:
100
needs: build
eslint.config.mjs
@@ -11,4 +11,7 @@ export default [
11
sourceType: 'module',
12
},
13
14
+ {
15
+ ignores: ['node-modules'],
16
+ },
17
];
package.json
@@ -4,7 +4,7 @@
4
"scripts": {
5
"format": "npx prettier . --write",
6
"format-check": "npx prettier . --check",
7
- "lint-tools": "npx eslint tools"
+ "lint-js": "npx eslint **/*.js"
8
9
"dependencies": {
10
"openapi-to-postmanv2": "4.24.0"
0 commit comments