DefinitelyTyped/types/ember-data/tslint.json
2018-02-10 19:28:26 -07:00

21 lines
662 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"strict-export-declare-modifiers": false,
// Heavy use of Function type in this older package.
"ban-types": false,
"jsdoc-format": false,
"no-misused-new": false,
// not sure what this means
"no-single-declare-module": false,
"object-literal-key-quotes": false,
"only-arrow-functions": false,
"no-empty-interface": false,
"prefer-const": false,
"no-unnecessary-generics": false,
"no-declare-current-package": false,
"no-self-import": false,
"no-return-await": false // used in tests
}
}