fixed linting

This commit is contained in:
whyn07m3
2018-09-13 09:09:25 -04:00
parent 97ee1e6d95
commit f076789778
2 changed files with 19 additions and 0 deletions

View File

@@ -4,6 +4,7 @@
// Ricardo de Pena <https://github.com/rdepena>
// Roma <https://github.com/whyn07m3>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.9
// based on v9.61.34.22
// see https://openfin.co/support/technical-faq/#what-do-the-numbers-in-the-runtime-version-mean

18
types/openfin/tslint.json Normal file
View File

@@ -0,0 +1,18 @@
{
"extends": "dtslint/dt.json",
"rules": {
"max-line-length": false,
"no-redundant-jsdoc-2": false,
"jsdoc-format": false,
"no-var-keyword": false,
"whitespace": false,
"semicolon": false,
"strict-export-declare-modifiers": false,
"array-type": false,
"unified-signatures": false,
"void-return": false,
"ban-types": false,
"callable-types": false,
"no-const-enum": false
}
}