-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.cjs
28 lines (28 loc) · 864 Bytes
/
.eslintrc.cjs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react-hooks/recommended',
'plugin:react/recommended'
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parser: '@typescript-eslint/parser',
plugins: [
'react-refresh',
"@typescript-eslint",
],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
// suppress errors for missing 'import React' in files
"react/react-in-jsx-scope": "off",
// allow jsx syntax in js files (for next.js project)
// "react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], //should add ".ts" if typescript project
// "no-unused-vars": "warn",
"@typescript-eslint/no-unused-vars": ["warn"]
},
}