1 Star 0 Fork 5

姜敬胜/vue+vant+typescript

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tslint.json 1.20 KB
一键复制 编辑 原始数据 按行查看 历史
蔷薇 提交于 2020-01-15 10:02 . 项目搭建
{
"defaultSeverity": "warning",
"extends": [
"tslint:recommended"
],
"linterOptions": {
"exclude": [
"node_modules/**"
]
},
"rules": {
"quotemark": false,
"indent": [true, "spaces", 2],
"interface-name": false,
"ordered-imports": false,
"object-literal-sort-keys": false,
"no-consecutive-blank-lines": false,
"trailing-comma": false, // 不强制检查尾逗号
"no-console": false, // 允许使用console
"no-string-literal": false, // 允许使用字符串索引对象中的值
"no-shadowed-variable": [
false,
{
"class": true,
"enum": true,
"function": true,
"interface": false,
"namespace": true,
"typeAlias": false,
"typeParameter": false
}
],
"no-var-requires": false, // 允许使用 require
"max-line-length": false, // 不限制每行的字符数
"no-empty": false,
"variable-name": [true,
"allow-leading-underscore",
"ban-keywords",
"check-format",
"allow-pascal-case"
],
"no-empty-interface": false, // 允许空的interface
"no-unused-vars": false,
"no-bitwise": false // 允许使用按位与
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
TypeScript
1
https://gitee.com/jiang_jingsheng/vue_vant_typescript.git
[email protected]:jiang_jingsheng/vue_vant_typescript.git
jiang_jingsheng
vue_vant_typescript
vue+vant+typescript
master

搜索帮助