Skip to content

Commit

Permalink
removing node env warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
PhillipsOwen authored May 1, 2024
1 parent ad09e33 commit a351bba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,10 @@ export default [
ecmaFeatures: {
jsx: true,
}},
globals: globals.browser
globals: {
...globals.node,
...globals.browser
}
},
rules: {
"no-unused-vars": "warn",
Expand All @@ -32,4 +35,4 @@ export default [
},
linterOptions: { reportUnusedDisableDirectives: "error" }
}
];
];

0 comments on commit a351bba

Please sign in to comment.