当前仓库属于暂停状态,部分功能使用受限,详情请查阅 仓库状态说明
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tslint.json 687 Bytes
一键复制 编辑 原始数据 按行查看 历史
OkCoder 提交于 2020-01-16 18:19 . utility插件不给力,改为md5-ts
{
"extends": "tslint-config-standard",
"globals": {
"require": true
},
"linterOptions": {
"exclude": [
"node_modules/**"
],
"include": [
"lib/*.ts"
]
},
"rules": {
"semicolon":[true,"never"],
"quotemark": [true, "single"], // 字符串字面量需要使用 单引号 包裹
"indent": [true, "spaces", 2], // 检查代码缩紧,采用空格作为缩进单位
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-consecutive-blank-lines": false,
"space-before-function-paren": false,
"no-floating-promises":false
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化