forked from typegoose/typegoose-testing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
82 lines (81 loc) · 2.55 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
const path = require('path');
module.exports = {
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint', 'prettier'],
extends: [
'plugin:@typescript-eslint/recommended',
'plugin:prettier/recommended',
],
parserOptions: {
sourceType: 'module',
useJSXTextNode: true,
project: [
path.resolve(__dirname, 'tsconfig.json'),
],
},
rules: {
'no-underscore-dangle': 0,
'arrow-body-style': 0,
'no-unused-expressions': 1,
'no-plusplus': 0,
'no-console': 0,
'func-names': 0,
'comma-dangle': [
'error',
{
arrays: 'always-multiline',
objects: 'always-multiline',
imports: 'always-multiline',
exports: 'always-multiline',
functions: 'never',
},
],
'no-prototype-builtins': 0,
'prefer-destructuring': 0,
'no-else-return': 1,
'lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }],
'@typescript-eslint/no-non-null-assertion': 0,
'@typescript-eslint/explicit-member-accessibility': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/no-inferrable-types': 0,
'@typescript-eslint/explicit-function-return-type': 0,
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/no-empty-function': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'curly': ['error', 'all'],
'padding-line-between-statements': [
"warn",
{
blankLine: 'always', prev: '*', next: 'return' // add blank line *before* all returns (if there are statements before)
},
{
blankLine: 'always', prev: '*', next: 'if' // add blank line *before* all ifs
},
{
blankLine: 'always', prev: 'if', next: '*' // add blank line *after* all ifs
},
{
blankLine: 'any', prev: 'if', next: 'if' // allow blank line between ifs, but not enforce either
},
{
blankLine: 'always', prev: '*', next: ['function', 'class'] // add blank line *before* all functions and classes
},
{
blankLine: 'always', prev: ['function', 'class'], next: '*' // add blank line *after* all functions and classes
},
{
blankLine: 'always', prev: '*', next: 'import' // add blank line *before* all imports
},
{
blankLine: 'always', prev: 'import', next: '*' // add blank line *after* all imports
},
{
blankLine: 'never', prev: 'import', next: 'import' // dont allow blank line between imports
},
]
},
env: {
node: true,
jest: true,
},
};