1 Star 0 Fork 0

朱文涛/weite-ts-admin

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tslint.json 930 Bytes
一键复制 编辑 原始数据 按行查看 历史
朱文涛 提交于 2021-04-28 18:10 . 首次提交
{
"defaultSeverity": "none",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"indent": [true, "spaces", 4],
"interface-name": false,
"no-consecutive-blank-lines": false,
"object-literal-sort-keys": false,
"ordered-imports": false,
"quotemark": [true, "single"],
"no-console": false,
"semicolon": [
false,
"always"
],
"trailing-comma": [
true, {
"singleline": "never",
"multiline": {
"objects": "ignore",
"arrays": "ignore",
"functions": "never",
"typeLiterals": "ignore"
}
}
]
}
// tsconfig.json
// Error: Calls to 'console.log' are not allowed.
//
// Error: 去除行尾必加';'
//
// Error: 禁止自动检测末尾行必须使用逗号,always总是检测,never从不检测,ignore忽略检测
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zwt1995/weite-ts-admin.git
git@gitee.com:zwt1995/weite-ts-admin.git
zwt1995
weite-ts-admin
weite-ts-admin
master

搜索帮助