mirror of https://gitee.com/antv-l7/antv-l7
40 lines
814 B
JSON
40 lines
814 B
JSON
{
|
|
"enable":true,
|
|
"extends": [
|
|
"tslint:latest",
|
|
"tslint-config-prettier",
|
|
"tslint-plugin-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,
|
|
"no-submodule-imports": false,
|
|
"no-object-literal-type-assertion": false,
|
|
"member-ordering": false
|
|
},
|
|
"globals": {
|
|
"AMap": true
|
|
},
|
|
"linterOptions": {
|
|
"exclude": [
|
|
"stories/**",
|
|
"**/*.d.ts",
|
|
"**/data/*.ts",
|
|
"**/*.{test,story}.ts{,x}",
|
|
"node_modules/**"
|
|
]
|
|
}
|
|
}
|