mirror of
https://github.com/zhigang1992/docz.git
synced 2026-01-12 22:46:49 +08:00
18 lines
546 B
JSON
18 lines
546 B
JSON
{
|
|
"extends": ["tslint:latest", "tslint-config-prettier"],
|
|
"rules": {
|
|
"interface-name": [true, "never-prefix"],
|
|
"ordered-imports": false,
|
|
"object-literal-sort-keys": [true, "ignore-case", "shorthand-first"],
|
|
|
|
// TODO: allow devDependencies only in **/*.spec.ts files:
|
|
// waiting on https://github.com/palantir/tslint/pull/3708
|
|
"no-implicit-dependencies": [true, "dev"],
|
|
|
|
// Recommended built-in rules
|
|
"no-var-keyword": true,
|
|
"no-parameter-reassignment": true,
|
|
"typedef": [true, "call-signature"],
|
|
}
|
|
}
|