UNPKG
eslint-config-mts
Version:
latest (0.0.2)
0.0.2
0.0.1
MLT ESLint 规则
test.hulu.team/eslint/config/alloy
eslint-config-mts
/
test
/
base
/
no-div-regex
/
.eslintrc.js
10 lines
(9 loc)
•
288 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
module
.
exports
= { rules: {
/** * 禁止在正则表达式中出现形似除法操作符的开头,如 let a = /=foo/ *
@reason
有代码高亮的话,在阅读这种代码时,也完全不会产生歧义或理解上的困难 */
'no-div-regex'
:
'off'
, }, };