14 lines
358 B
JSON
14 lines
358 B
JSON
{
|
|
"extends": "tslint:recommended",
|
|
"rules": {
|
|
"array-type": [true, "generic"],
|
|
"member-access": true,
|
|
"no-console": [false],
|
|
"no-duplicate-variable": true,
|
|
"object-literal-sort-keys": false,
|
|
"max-line-length": [true, {
|
|
"limit": 160,
|
|
"ignore-pattern": "^import | *export .*? {"
|
|
}]
|
|
}
|
|
}
|