forked from ephemeralrogue/gauntlet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
92 lines (91 loc) · 2.37 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
83
84
85
86
87
88
89
90
91
92
'use strict'
/** @type {import('eslint').Linter.Config & {parserOptions?: import('@typescript-eslint/parser').ParserOptions}} */
const config = {
root: true,
extends: '@cherryblossom/eslint-config/node',
parserOptions: {
project: [
'src/tsconfig.json',
'tests/tsconfig.json',
'types/tsconfig.json'
],
tsconfigRootDir: __dirname,
EXPERIMENTAL_useSourceOfProjectReferenceRedirect: true,
warnOnUnsupportedTypeScriptVersion: false
},
overrides: [
{
files: ['*.config*.js', '**/*.eslintrc.js'],
parserOptions: {
project: './tsconfig.config.json',
tsconfigRootDir: __dirname
},
settings: {
jsdoc: {mode: 'typescript'}
},
rules: {
camelcase: 0,
'id-length': 0,
'node/no-unpublished-require': 0
}
},
{
files: ['**/*.ts'],
rules: {
// Allow snake_case
'@typescript-eslint/naming-convention': [
1,
{
selector: 'default',
format: ['camelCase', 'snake_case'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
},
{
selector: 'variable',
modifiers: ['const'],
format: ['camelCase', 'snake_case', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
},
{
selector: 'property',
format: ['camelCase', 'snake_case', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
},
{
selector: 'typeLike',
format: ['PascalCase'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
},
{
selector: 'enumMember',
format: ['PascalCase', 'UPPER_CASE'],
leadingUnderscore: 'allow',
trailingUnderscore: 'allow'
}
]
}
},
{
files: ['**/*.d.ts'],
rules: {
'@typescript-eslint/naming-convention': 0
}
}
],
rules: {
// Allow URls to the Discord docs
'jsdoc/require-description-complete-sentence': 0,
'jsdoc/match-description': [
1,
{
matchDescription:
'^([A-Z`\\d_{][\\s\\S]*[.?!`]|https://discord.com/developers/docs/[\\s\\S]+)$'
}
]
}
}
module.exports = config