-
Notifications
You must be signed in to change notification settings - Fork 14
/
.eslintrc.js
40 lines (40 loc) · 1 KB
/
.eslintrc.js
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
module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.eslint.json'],
sourceType: 'module',
},
root: true,
env: {
jest: true,
node: true,
browser: true
},
plugins: ['@typescript-eslint/eslint-plugin'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
'plugin:unicorn/all',
'plugin:jsdoc/recommended'
],
rules: {
'semi': 'off',
'@typescript-eslint/no-explicit-any': 'error',
'no-multiple-empty-lines': ['error', { 'max': 1, 'maxEOF': 0 }],
'unicorn/prefer-node-protocol': 'off',
'jsdoc/require-jsdoc': ['error', { 'publicOnly': true }],
'jsdoc/require-param-type': 'off',
'jsdoc/require-returns': 'off'
},
overrides: [
{
files: ['examples/*.js'],
rules: {
//'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-var-requires': 'off',
'unicorn/prefer-module': 'off',
}
}
]
}