DefinitelyTyped/types/react-native-maps/tslint.json
Chris Shaffer bf90e32d0c Remove MapView definitions from @types/react-native - create new react-native-maps module (#35239)
* Add initalRegion missing type definition

initialRegion is a valid prop in `react-native-maps` but it's definition is missing in the @types.

* Corrected typo in initialRegion

Corrected `initalRegion` to `initialRegion`.

* Removed trailing white space due to Travis fail

* removed any reference to MapView in index.d.ts

* removed any reference to MapView in legacy-properties.d.ts

* Revert "removed any reference to MapView in legacy-properties.d.ts"

This reverts commit 157b4a9ec7b3327be9fb3165dd31101df987b868.

* Revert "removed any reference to MapView in index.d.ts"

This reverts commit e98b539e0155a2b9646f373205fd0e385b78cb6c.

* Revert "Removed trailing white space due to Travis fail"

This reverts commit 5d28044181c8b73fef3108c8001cc4821b35cd94.

* Revert "Corrected typo in initialRegion"

This reverts commit 15c79a02cfb6517dccc8bc29e92cde14c66b5ac4.

* Revert "Add initalRegion missing type definition"

This reverts commit e622788386aa444d96ffd5e68fb526690f1b7c13.

* removed all references to deprecated MapView

* added full types for react-native-maps, some tests, incompolete tests atm

* gitignored package.* files

* gitignored package.* files

* added missing tslint.json

* added header w/updated attributions to contributors from react-native-maps

* removed additional attributions

* removed ./ in files config tsconfig.json

* removed stuff that might conflict with ultra-picky travis

* removed stuff that might conflict with ultra-picky travis

* copied rn tsconfig.json due to travis conflicts

* correct header url

* corrected header to not include minor version
2019-05-19 21:31:25 +02:00

29 lines
889 B
JSON

{
"extends": "dtslint/dt.json",
"rules": {
"ban-types": false,
"align": false,
"array-type": false,
"comment-format": false,
"interface-over-type-literal": false,
"jsdoc-format": false,
"max-line-length": false,
"no-declare-current-package": false,
"no-misused-new": false,
"no-consecutive-blank-lines": false,
"no-duplicate-imports": false,
"no-empty-interface": false,
"no-padding": false,
"no-self-import": false,
"no-var": false,
"no-var-keyword": false,
"prefer-declare-function": false,
"prefer-method-signature": false,
"semicolon": false,
"space-within-parens": false,
"strict-export-declare-modifiers": false,
"use-default-type-parameter": false,
"no-unnecessary-generics": false
}
}