DefinitelyTyped/types/react-native/tslint.json
Andy bd29808df7 react-native: Fix lint failures (#15496)
...mostly by disabling them.
2017-03-29 15:53:09 -07:00

21 lines
612 B
JSON

{
"extends": "../tslint.json",
"rules": {
// Lowercase `object` is available in TypeScript 2.2 only.
"ban-types": false,
// Below are all TODO
"array-type": false,
"comment-format": false,
"interface-over-type-literal": false,
"no-misused-new": false,
"no-consecutive-blank-lines": false,
"no-empty-interface": false,
"no-padding": false,
"no-redundant-modifiers": false,
"no-var": false,
"prefer-declare-function": false,
"prefer-method-signature": false,
"semicolon": false
}
}