pig-dam-core
Version:
Library that should be included in every Pig DAM project we build
71 lines (70 loc) • 1.15 kB
JSON
{
"extends": [
"tslint:recommended"
],
"linterOptions": {
"format": "stylish"
},
"rules": {
"arrow-parens": false,
"ban-types": false,
"comment-format": [
true,
"check-space"
],
"indent": [
true,
"tabs"
],
"interface-name": false,
"interface-over-type-literal": false,
"linebreak-style": [
true,
"LF"
],
"max-classes-per-file": false,
"no-angle-bracket-type-assertion": false,
"no-bitwise": false,
"no-conditional-assignment": false,
"no-consecutive-blank-lines": [
true,
2
],
"no-console": false,
"no-empty": false,
"no-shadowed-variable": false,
"object-literal-sort-keys": true,
"only-arrow-functions": false,
"ordered-imports": true,
"max-line-length": {
"options": {
"limit": 160
}
},
"quotemark": [
true,
"double",
"avoid-escape"
],
"semicolon": [
true,
"always"
],
"trailing-comma": {
"severity": "error"
},
"variable-name": {
"options": [
"allow-leading-underscore",
"allow-pascal-case",
"check-format"
]
},
"whitespace": {
"options": [
"check-branch"
],
"severity": "off"
}
}
}