* Disable linting for maximum line length so that definition header comment line does not have to be broken up.
This commit is contained in:
Tom Wanzek 2017-03-07 21:53:29 -05:00
parent cff6915edf
commit ba9f5d22a2

View File

@ -1,6 +1,7 @@
{
"extends": "../tslint.json",
"rules": {
"unified-signatures": false
"unified-signatures": false,
"max-line-length": [false, 200]
}
}