Skip to content

Commit

Permalink
Add bloq/node to eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
gndelia committed Nov 11, 2024
1 parent 971dccf commit dc618db
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"extends": ["bloq", "prettier"],
"extends": ["bloq", "bloq/node", "prettier"],
"overrides": [
{
"extends": ["bloq/typescript", "prettier"],
Expand All @@ -11,7 +11,10 @@
},
{
"extends": ["bloq/vitest", "prettier"],
"files": ["*.test.js"]
"files": ["*.test.js"],
"rules": {
"node/no-missing-import": "off"
}
}
],
"parserOptions": {
Expand Down

0 comments on commit dc618db

Please sign in to comment.