2015-02-19 20:10:52 -08:00
|
|
|
[ignore]
|
2016-11-13 06:21:07 -08:00
|
|
|
; We fork some components by platform
|
2016-08-23 04:13:27 -07:00
|
|
|
.*/*[.]android.js
|
2015-02-19 20:10:52 -08:00
|
|
|
|
2016-11-18 18:25:02 -08:00
|
|
|
; Ignore templates for 'react-native init'
|
|
|
|
.*/local-cli/templates/.*
|
2016-04-01 08:53:28 -07:00
|
|
|
|
Adds Danger support
Summary:
Testing Danger support in CI. Continuation of #14964, which Circle stopped building.
Update your node modules first: `npm install`
`npm run danger pr https://github.com/facebook/react-native/pull/14951`
Verify output. This PR should trigger a WIP warning, as well as a package.json warning:
```
> react-native@1000.0.0 danger /Users/hramos/git/react-native
> node ./node_modules/.bin/danger "pr" "https://github.com/facebook/react-native/pull/14951"
{
fails: [],
warnings: [
{
message: ":construction_worker: Work In Progress - <i>Do not merge yet.</i>"
},
{
message: ":lock: Changes were made to package.json - <i>This will require a manual import. Once approved, a Facebook employee should import the PR, then run `yarn add` for any new packages.</i>"
}
],
messages: [],
markdowns: ["This PR requires attention from the facebook/react-native team."]
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/14946`
Verify output. This PR should trigger a warning against the lack of a test plan (note that the PR does have a test plan, but it does not title it as such):
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan</i>"
}
],
messages: [],
markdowns: []
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/13186`
Should warn against a missing test plan:
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: [":page_facing_up: Thanks for your contribution to the docs!"]
}
```
If the author is able to issue bot commands, we reasonably assume that this is coming from an established core contributor. Their PRs will be flagged for expedited review:
`npm run danger pr https://github.com/facebook/react-native/pull/14895`
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: ["This PR has been submitted by a core contributor. Notifying facebook/react-native."]
}
```
Closes https://github.com/facebook/react-native/pull/15061
Differential Revision: D5436605
Pulled By: hramos
fbshipit-source-id: 4ba9e812387d8a69893dab537af9b6cd108753cf
2017-07-18 11:08:35 -07:00
|
|
|
; Ignore the Dangerfile
|
2018-02-06 13:31:23 -08:00
|
|
|
<PROJECT_ROOT>/bots/dangerfile.js
|
Adds Danger support
Summary:
Testing Danger support in CI. Continuation of #14964, which Circle stopped building.
Update your node modules first: `npm install`
`npm run danger pr https://github.com/facebook/react-native/pull/14951`
Verify output. This PR should trigger a WIP warning, as well as a package.json warning:
```
> react-native@1000.0.0 danger /Users/hramos/git/react-native
> node ./node_modules/.bin/danger "pr" "https://github.com/facebook/react-native/pull/14951"
{
fails: [],
warnings: [
{
message: ":construction_worker: Work In Progress - <i>Do not merge yet.</i>"
},
{
message: ":lock: Changes were made to package.json - <i>This will require a manual import. Once approved, a Facebook employee should import the PR, then run `yarn add` for any new packages.</i>"
}
],
messages: [],
markdowns: ["This PR requires attention from the facebook/react-native team."]
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/14946`
Verify output. This PR should trigger a warning against the lack of a test plan (note that the PR does have a test plan, but it does not title it as such):
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan</i>"
}
],
messages: [],
markdowns: []
}
```
`npm run danger pr https://github.com/facebook/react-native/pull/13186`
Should warn against a missing test plan:
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: [":page_facing_up: Thanks for your contribution to the docs!"]
}
```
If the author is able to issue bot commands, we reasonably assume that this is coming from an established core contributor. Their PRs will be flagged for expedited review:
`npm run danger pr https://github.com/facebook/react-native/pull/14895`
```
{
fails: [],
warnings: [
{
message: ":clipboard: Test Plan - <i>This PR appears to be missing a Test Plan.</i>"
}
],
messages: [],
markdowns: ["This PR has been submitted by a core contributor. Notifying facebook/react-native."]
}
```
Closes https://github.com/facebook/react-native/pull/15061
Differential Revision: D5436605
Pulled By: hramos
fbshipit-source-id: 4ba9e812387d8a69893dab537af9b6cd108753cf
2017-07-18 11:08:35 -07:00
|
|
|
|
2016-11-13 06:21:07 -08:00
|
|
|
; Ignore "BUCK" generated dirs
|
2016-07-06 12:49:08 -07:00
|
|
|
<PROJECT_ROOT>/\.buckd/
|
|
|
|
|
2016-11-13 06:21:07 -08:00
|
|
|
; Ignore unexpected extra "@providesModule"
|
2016-11-04 05:40:26 -07:00
|
|
|
.*/node_modules/.*/node_modules/fbjs/.*
|
2016-07-06 12:49:08 -07:00
|
|
|
|
2016-11-13 06:21:07 -08:00
|
|
|
; Ignore duplicate module providers
|
|
|
|
; For RN Apps installed via npm, "Libraries" folder is inside
|
|
|
|
; "node_modules/react-native" but in the source repo it is in the root
|
2016-07-07 03:04:38 -07:00
|
|
|
.*/Libraries/react-native/React.js
|
2016-07-06 12:49:08 -07:00
|
|
|
|
2017-07-17 03:02:14 -07:00
|
|
|
; Ignore polyfills
|
|
|
|
.*/Libraries/polyfills/.*
|
|
|
|
|
2017-12-14 15:14:03 -08:00
|
|
|
; Ignore metro
|
|
|
|
.*/node_modules/metro/.*
|
|
|
|
|
2018-06-09 10:57:39 -07:00
|
|
|
; These should not be required directly
|
|
|
|
; require from fbjs/lib instead: require('fbjs/lib/invariant')
|
|
|
|
.*/node_modules/invariant/.*
|
|
|
|
.*/node_modules/warning/.*
|
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
[include]
|
|
|
|
|
|
|
|
[libs]
|
|
|
|
Libraries/react-native/react-native-interface.js
|
2016-03-08 12:38:52 -08:00
|
|
|
flow/
|
2017-12-14 15:14:03 -08:00
|
|
|
flow-github/
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
[options]
|
2017-01-19 07:31:08 -08:00
|
|
|
emoji=true
|
|
|
|
|
2018-08-02 16:02:51 -07:00
|
|
|
esproposal.optional_chaining=enable
|
2018-08-03 16:35:25 -07:00
|
|
|
esproposal.nullish_coalescing=enable
|
2018-08-02 16:02:51 -07:00
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
module.system=haste
|
2018-04-25 07:00:46 -07:00
|
|
|
module.system.haste.use_name_reducers=true
|
|
|
|
# keep the following in sync with server/haste/hasteImpl.js
|
|
|
|
# get basename
|
|
|
|
module.system.haste.name_reducers='^.*/\([a-zA-Z0-9$_.-]+\.js\(\.flow\)?\)$' -> '\1'
|
|
|
|
# strip .js or .js.flow suffix
|
|
|
|
module.system.haste.name_reducers='^\(.*\)\.js\(\.flow\)?$' -> '\1'
|
|
|
|
# strip .ios suffix
|
|
|
|
module.system.haste.name_reducers='^\(.*\)\.ios$' -> '\1'
|
|
|
|
module.system.haste.name_reducers='^\(.*\)\.android$' -> '\1'
|
|
|
|
module.system.haste.name_reducers='^\(.*\)\.native$' -> '\1'
|
|
|
|
module.system.haste.paths.blacklist=.*/__tests__/.*
|
|
|
|
module.system.haste.paths.blacklist=.*/__mocks__/.*
|
|
|
|
module.system.haste.paths.blacklist=<PROJECT_ROOT>/Libraries/Animated/src/polyfills/.*
|
|
|
|
module.system.haste.paths.whitelist=<PROJECT_ROOT>/Libraries/.*
|
|
|
|
module.system.haste.paths.whitelist=<PROJECT_ROOT>/RNTester/.*
|
|
|
|
module.system.haste.paths.whitelist=<PROJECT_ROOT>/IntegrationTests/.*
|
|
|
|
module.system.haste.paths.blacklist=<PROJECT_ROOT>/Libraries/Animated/src/polyfills/.*
|
2015-04-24 22:43:01 -07:00
|
|
|
|
2015-07-29 20:19:40 -07:00
|
|
|
munge_underscores=true
|
|
|
|
|
2016-04-19 03:51:45 -07:00
|
|
|
module.name_mapper='^[./a-zA-Z0-9$_-]+\.\(bmp\|gif\|jpg\|jpeg\|png\|psd\|svg\|webp\|m4v\|mov\|mp4\|mpeg\|mpg\|webm\|aac\|aiff\|caf\|m4a\|mp3\|wav\|html\|pdf\)$' -> 'RelativeImageStub'
|
2015-08-26 18:30:46 -07:00
|
|
|
|
2015-06-11 15:35:26 -07:00
|
|
|
suppress_type=$FlowIssue
|
|
|
|
suppress_type=$FlowFixMe
|
2017-08-17 18:36:54 -07:00
|
|
|
suppress_type=$FlowFixMeProps
|
|
|
|
suppress_type=$FlowFixMeState
|
2015-06-11 15:35:26 -07:00
|
|
|
|
2017-12-04 13:25:03 -08:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(<VERSION>\\)? *\\(site=[a-z,_]*[react_native_oss|react_native_fb][a-z,_]*\\)?)\\)
|
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(<VERSION>\\)? *\\(site=[a-z,_]*[react_native_oss|react_native_fb][a-z,_]*\\)?)\\)?:? #[0-9]+
|
2015-06-22 09:43:30 -07:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
2017-02-16 18:59:55 -08:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
|
2015-06-11 15:35:26 -07:00
|
|
|
|
2018-06-19 23:54:16 -07:00
|
|
|
[lints]
|
|
|
|
all=warn
|
|
|
|
|
|
|
|
# There is an ESLint rule for this
|
|
|
|
unclear-type=off
|
|
|
|
|
|
|
|
sketchy-null=off
|
|
|
|
sketchy-null-number=warn
|
|
|
|
sketchy-null-mixed=warn
|
|
|
|
|
|
|
|
# This is noisy for now. We *do* still want to warn on importing types
|
|
|
|
# from untyped files, which is covered by untyped-type-import
|
|
|
|
untyped-import=off
|
|
|
|
|
|
|
|
[strict]
|
|
|
|
deprecated-type
|
|
|
|
nonstrict-import
|
|
|
|
sketchy-null
|
|
|
|
unclear-type
|
|
|
|
unsafe-getters-setters
|
|
|
|
untyped-import
|
|
|
|
untyped-type-import
|
|
|
|
|
2015-04-24 22:43:01 -07:00
|
|
|
[version]
|
2018-08-07 15:56:04 -07:00
|
|
|
^0.78.0
|