mirror of https://gitee.com/antv-l7/antv-l7
36 lines
685 B
JSON
36 lines
685 B
JSON
{
|
|
"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,
|
|
"no-console": [true, "log"],
|
|
"object-literal-sort-keys": false,
|
|
"no-implicit-dependencies": [true, "dev"],
|
|
"interface-over-type-literal": false,
|
|
"no-this-assignment": false
|
|
},
|
|
"globals": {
|
|
"AMap": true
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"**/*.d.ts",
|
|
"**/data/*.ts",
|
|
"**/*.{test,story}.ts{,x}",
|
|
"node_modules/**"
|
|
]
|
|
}
|
|
}
|