-
Notifications
You must be signed in to change notification settings - Fork 6
/
.eslintrc.cjs
47 lines (47 loc) · 1010 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module.exports = {
parserOptions: {
sourceType: 'module',
},
settings: {
'import/resolver': {
node: {
paths: ['src'],
extensions: ['.js', '.ts', '.d.ts', '.tsx'],
},
},
react: {
version: 'detect',
},
},
env: {
browser: true,
node: true,
es2021: true,
jest: true
},
extends: [
'eslint:recommended',
'plugin:import/errors',
'plugin:jsdoc/recommended',
'eslint-config-prettier',
],
// Some plugins are automatically included.
// Run `yarn eslint --print-config foo.js > bar.json` to see included plugins.
// plugins: [],
rules: {
'jsdoc/require-hyphen-before-param-description': ['warn', 'always'],
'no-console': ['warn'],
'no-use-before-define': ['error'],
'no-unused-vars': [
'error',
{
vars: 'all',
args: 'after-used',
ignoreRestSiblings: false,
},
],
'no-var': ['error'],
'prefer-const': ['error'],
radix: ['error'],
},
};