forked from yGuy/chatgpt-mattermost-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
51 lines (49 loc) · 1.6 KB
/
eslint.config.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
// @ts-check
// from https://typescript-eslint.io/getting-started/
import eslint from '@eslint/js';
import tseslint from 'typescript-eslint';
import eslintConfigPrettier from 'eslint-config-prettier';
export default tseslint.config({
files: ['**/*.ts'],
ignores: ['**/node_modules/**', '**/dist/**'],
extends: [
eslint.configs.recommended,
...tseslint.configs.recommended,
eslintConfigPrettier,
],
rules: {
"max-lines-per-function": ["warn", {"max": 75}], //GitLab25
"max-lines": ["warn", {"max": 500}], //GitLab250
//"complexity": ["error", { "max": 5 }], //GitLab5
"import/order": "off",
"sort-imports": "warn",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^[A-Z]"
}],
/** 命名規則 */
"@typescript-eslint/naming-convention": [
"error",
{ // classやtypeなどは頭大文字
"selector": "typeLike",
"format": ["PascalCase"]
},
{ // グローバル定数はアッパーケース
"selector": "variable",
"modifiers": ["global", "const"],
"format": ["camelCase", "UPPER_CASE"]
},
{ // 変数名はキャメルケース
"selector": "variable",
"format": ["camelCase", "UPPER_CASE"]
}
],
// 未使用の変数や関数は宣言禁止、ただし大文字で始まっているものはクラスなので許す
"no-unused-vars": ["error", {
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^[A-Z]"
}],
"no-console": "error"
},
});