Skip to content

Commit

Permalink
feat(import): allow .eslintrc.cjs to use devDeps
Browse files Browse the repository at this point in the history
  • Loading branch information
nnmax committed Aug 26, 2023
1 parent 65103ca commit 33c57fd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"editor.formatOnSave": true,
"editor.formatOnSave": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll": false,
"source.fixAll": true,
"source.fixAll.eslint": true
},
"[json][jsonc][javascript][javascriptreact][typescript][typescriptreact][less][markdown][yml][yaml][graphql][css]": {
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-config-import/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ module.exports = {
'**/protractor.conf.{js,ts}',
'**/protractor.conf.*.{js,ts}',
'**/karma.conf.{js,ts}',
'**/.eslintrc.{js,ts}',
'**/.eslintrc.{js,ts,cjs,mjs}',
'**/*.stories.*',
],
optionalDependencies: false,
Expand Down

0 comments on commit 33c57fd

Please sign in to comment.