You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .eslintrc.js
+8-9Lines changed: 8 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -5,24 +5,23 @@ module.exports = {
5
5
sourceType: 'module',// Allows for the use of imports
6
6
},
7
7
env: {
8
-
node: false,
8
+
node: true,
9
9
browser: true,
10
10
commonjs: true,
11
11
},
12
12
settings: {},
13
13
extends: [
14
-
'plugin:@typescript-eslint/recommended',// Uses the recommended rules from the @typescript-eslint/eslint-plugin
14
+
//'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
15
15
'eslint:recommended',
16
-
'prettier/@typescript-eslint',// Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
16
+
//'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
17
17
'plugin:prettier/recommended',// Enables eslint-plugin-prettier and eslint-config-prettier. This will display prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.
18
18
],
19
19
rules: {
20
20
// Place to specify ESLint rules. Can be used to overwrite rules specified from the extended configs
0 commit comments