DefinitelyTyped/types/gsap/tslint.json
Nathan Shively-Sanders 64fc88601e
Disable npm-naming with dt-header (#34112)
npm-naming is a new rule but the code it runs was already disabled
whenever dt-header was disabled. This change keeps the behaviour the
same.
2019-03-22 09:26:34 -07:00

18 lines
489 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
// All are TODOs
"dt-header": false,
"npm-naming": false,
"jsdoc-format": false,
"max-line-length": false,
"no-consecutive-blank-lines": false,
"no-declare-current-package": false,
"no-padding": false,
"no-single-declare-module": false,
"no-unnecessary-class": false,
"no-var-keyword": false,
"strict-export-declare-modifiers": false
}
}