Skip to content

Commit c647644

Browse files
committed
Update lint settings
1 parent 6d7806b commit c647644

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
node-version: ${{ matrix.node-version }}
2222
cache: 'npm'
2323
- run: npm install
24+
- run: npm lint
2425
- run: npm test
2526

2627
integration:

eslint.config.mjs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,17 @@ export default [
1010
{
1111
ignores: [
1212
'**/.DS_Store',
13+
'**/.env',
14+
'**/.env.*',
15+
'!**/.env.example',
1316
'**/_sass',
1417
'**/_site',
1518
'**/coverage',
16-
'dist/*',
1719
'**/node_modules',
1820
'**/package-lock.json',
21+
'dist/*',
1922
'packages/*/dist/*',
20-
'**/.env',
21-
'**/.env.*',
22-
'!**/.env.example',
23+
'test/qunit/vendor/*',
2324
],
2425
},
2526
{

package-lock.json

Lines changed: 17 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"coveralls": "^3.1.0",
5050
"eslint": "^9.13.0",
5151
"eslint-plugin-mocha": "^11.0.0",
52-
"globals": "^15.11.0",
52+
"globals": "^16.0.0",
5353
"jquery": "^3.6.0",
5454
"jsdom": "^16.5.0",
5555
"karma": "^6.3.16",

0 commit comments

Comments
 (0)