This repository has been archived by the owner on Mar 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
67 lines (67 loc) · 2.63 KB
/
.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/* eslint-disable @typescript-eslint/naming-convention */
/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
env: {
es6: true,
node: true,
browser: true
},
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
ecmaFeatures: {
experimentalObjectRestSpread: true
},
project: './tsconfig.json'
},
extends: ['@hellomouse/typescript'],
ignorePatterns: ['build/**'],
rules: {
'@typescript-eslint/indent': ['error', 4, { SwitchCase: 2 }],
'curly': ['error', 'multi'],
'padded-blocks': [
'error',
{
blocks: 'never'
}
],
'one-var': 'off',
'space-unary-ops': [
'error',
{
words: true,
nonwords: false
}
],
'padding-line-between-statements': 'off',
'@typescript-eslint/padding-line-between-statements': [
'error',
{ blankLine: 'any', prev: '*', next: 'return' },
{ blankLine: 'any', prev: ['const', 'let'], next: '*' },
{ blankLine: 'any', prev: ['const', 'let'], next: ['const', 'let'] },
{ blankLine: 'any', prev: '*', next: ['interface', 'type'] }
],
'no-shadow': 'off',
'@typescript-eslint/no-shadow': 'error',
'no-useless-return': 'error',
'block-scoped-var': 'error',
'no-else-return': 'error',
'no-undef-init': 'error',
'@typescript-eslint/naming-convention': [
'error',
{ selector: 'default', format: ['camelCase'], leadingUnderscore: 'allow' },
{ selector: 'variable', format: ['camelCase', 'UPPER_CASE', 'PascalCase'], leadingUnderscore: 'allow' },
{ selector: 'parameter', format: ['camelCase'], leadingUnderscore: 'allow' },
{ selector: 'memberLike', format: ['camelCase'], leadingUnderscore: 'allow' },
{ selector: 'typeLike', format: ['PascalCase'] },
{ selector: 'enum', format: ['PascalCase', 'UPPER_CASE'] },
{ selector: 'enumMember', format: ['PascalCase', 'UPPER_CASE'] },
{ selector: 'variable', modifiers: ['const'], format: ['camelCase', 'UPPER_CASE'] },
{ selector: 'typeProperty', format: ['PascalCase', 'camelCase'], leadingUnderscore: 'allow' },
{ selector: 'typeAlias', format: ['PascalCase', 'UPPER_CASE'] },
{ selector: 'objectLiteralProperty', format: ['camelCase', 'UPPER_CASE'] }
],
'@typescript-eslint/array-type': ['error', { default: 'generic' }]
}
};