UNPKG
tslint-config-alloy
Version:
latest (0.2.1)
0.2.1
0.2.0
0.1.0
AlloyTeam TSLint 规则
github.com/AlloyTeam/tslint-config-alloy
AlloyTeam/tslint-config-alloy
tslint-config-alloy
/
test
/
only-arrow-functions
/
tslint.json
11 lines
(10 loc)
•
351 B
JSON
View Raw
1
2
3
4
5
6
7
8
9
10
11
{
"rules"
:
{
"only-arrow-functions"
:
[
true
,
"allow-declarations"
,
"allow-named-functions"
]
}
,
"meta"
:
{
"category"
:
"typescript-specific"
,
"description"
:
"必须使用箭头函数,除非是单独的函数声明或是命名函数"
,
"reason"
:
"统一使用箭头函数,避免 `this` 指向问题"
}
}