Skip to content

Commit

Permalink
Fix cli not being linted due to different file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
robatwilliams committed May 12, 2023
1 parent d104267 commit 845927c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
],
"plugins": ["import"],
"parserOptions": {
"ecmaVersion": 2021
"ecmaVersion": 2022
},
"settings": {
"jest": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"private": true,
"scripts": {
"check": "npm-run-all --parallel check:*",
"check:lint": "eslint --no-eslintrc --config=.eslintrc.json **/*.js",
"check:lint": "eslint --no-eslintrc --config=.eslintrc.json **/*.{js,mjs}",
"check:prettier": "prettier --check **/*.{js,json,md}",
"ci": "npm-run-all check test",
"postinstall": "lerna bootstrap",
Expand Down

0 comments on commit 845927c

Please sign in to comment.