-
Notifications
You must be signed in to change notification settings - Fork 6
/
tslint.json
executable file
·106 lines (106 loc) · 3.38 KB
/
tslint.json
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"defaultSeverity": "warn",
"extends": [
"tslint:recommended",
"tslint-config-prettier"
],
"rules": {
"no-empty-interface": true, // 不允许空接口
"no-parameter-reassignment": false, // 不允许修改方法输入参数
"prefer-for-of": true, // 如果for循环中没有使用索引,建议是使用for-of
"await-promise": true, // 不允许没有Promise的情况下使用await
"curly": true, // if/for/do/while强制使用大括号
"forin": true, // 使用for in语句时,强制进行hasOwnProperty检查
"no-bitwise": true, // 不允许使用特殊运算符 &, &=, |, |=, ^, ^=, <<, <<=, >>, >>=, >>>, >>>=, ~
"no-duplicate-super": true, // 不允许super() 两次使用在构造函数中
"no-empty": true, // 函数体不允许空
"no-eval": true, // 不允许使用eval
"no-for-in-array": true, // 不允许对Array使用for-in
"no-invalid-template-strings": true, // 只允许在模板字符串中使用${
"no-null-keyword": false, // 不允许使用null,使用undefined代替null,指代空
"no-switch-case-fall-through": true, // 不允许case段落中在没有使用breack的情况下,在新启一段case逻辑
"no-unsafe-finally": true, // 不允许在finally语句中使用return/continue/break/throw
"no-unused-expression": [
true,
"allow-fast-null-checks"
], // 不允许使用未使用的表达式
"no-var-keyword": true, // 不允许使用var
"radix": true, // parseInt时,必须输入radix精度参数
"indent": [
true,
"tabs",
], // 每行开始以4个空格符开始
"linebreak-style": [
true,
"CR/LF"
], // 换行符格式 CR/LF可以通用使用在windows和osx
"max-file-line-count": [
true,
500
], // 定义每个文件代码行数
"max-line-length": [
true,
120
], // 定义每行代码数
"no-duplicate-imports": true, // 禁止在一个文件内,多次引用同一module
"align": [
true,
"parameters",
"arguments",
"statements",
"members",
"elements"
], // 定义对齐风格
"class-name": true, // 类名以大驼峰格式命名
"comment-format": [
true,
"check-space"
], // 定义注释格式
"encoding": true, // 定义编码格式默认utf-8
"import-spacing": true, // import关键字后加空格
"interface-name": [
true,
"always-prefix"
], // interface必须以I开头
"jsdoc-format": true, // 注释基于jsdoc风格
"no-consecutive-blank-lines": [
true,
2
], // 不允许有空行
"no-trailing-whitespace": [
true,
"ignore-comments",
"ignore-jsdoc"
], // 不允许空格结尾
"no-unnecessary-initializer": true, // 不允许没有必要的初始化
"only-arrow-functions": false,
"no-console": [
true,
"time",
"timeEnd",
"trace"
],
"no-string-literal": false,
"ordered-imports": false, // 要求将import语句按字母顺序排列并分组
"object-literal-sort-keys": false,
"quotemark": [
true,
"single",
"avoid-escape"
],
"trailing-comma": [
false,
{
"multiline": "always",
"singleline": "never"
}
],
"variable-name": [
true,
"allow-pascal-case",
"allow-leading-underscore",
"ban-keywords",
"check-format"
]
}
}