antv-l7/tslint.json

36 lines
685 B
JSON
Raw Normal View History

{
"extends": [
"tslint:latest",
"tslint-react",
"tslint-plugin-prettier",
"tslint-config-prettier"
],
"rules": {
"prettier": true,
"quotemark": [
true,
"single",
"avoid-escape",
"avoid-template",
"jsx-double"
],
"no-bitwise": false,
2021-08-05 17:29:13 +08:00
"no-console": [true, "log"],
"object-literal-sort-keys": false,
"no-implicit-dependencies": [true, "dev"],
"interface-over-type-literal": false,
"no-this-assignment": false
2019-11-06 11:57:42 +08:00
},
"globals": {
"AMap": true
},
"linterOptions": {
2021-08-05 17:29:13 +08:00
"exclude": [
"**/*.d.ts",
"**/data/*.ts",
"**/*.{test,story}.ts{,x}",
"node_modules/**"
]
}
2019-10-29 17:33:37 +08:00
}