16 lines
328 B
JSON
16 lines
328 B
JSON
|
{
|
||
|
"rulesDirectory": ["tslint-plugin-prettier"],
|
||
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
||
|
"rules": {
|
||
|
"prettier": true,
|
||
|
"no-console": true,
|
||
|
"object-literal-sort-keys": [
|
||
|
true,
|
||
|
"match-declaration-order-only"
|
||
|
]
|
||
|
},
|
||
|
"linterOptions": {
|
||
|
"exclude": ["node_modules", "dist"]
|
||
|
}
|
||
|
}
|