mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add react-navigation Types * Add actions Functions : https://reactnavigation.org/docs/navigators/navigation-actions Note: the `type` option has to be optional because if not, we have to add it when we use one of actions. * Support of Screen Navigation Options For Stack, Tab and Drawer * Add Generic for NavigationNavigatorProps params * NavigationParams: any type of param * Add Tab and Drawer Navigators * Use of ViewStyle and TextStyle * Improve tsconfig.json && tslint.json * Add Test * fix test * fix lint
23 lines
603 B
JSON
23 lines
603 B
JSON
{
|
|
"extends": "dtslint/dt.json",
|
|
"rules": {
|
|
// Lowercase `object` is available in TypeScript 2.2 only.
|
|
"ban-types": false,
|
|
// Below are all TODO
|
|
"align": false,
|
|
"array-type": false,
|
|
"comment-format": false,
|
|
"interface-over-type-literal": false,
|
|
"jsdoc-format": false,
|
|
"no-misused-new": false,
|
|
"no-consecutive-blank-lines": false,
|
|
"no-empty-interface": false,
|
|
"no-padding": false,
|
|
"no-var": false,
|
|
"prefer-declare-function": false,
|
|
"prefer-method-signature": false,
|
|
"semicolon": false,
|
|
"strict-export-declare-modifiers": false
|
|
}
|
|
}
|