2015-02-20 04:10:52 +00:00
|
|
|
[ignore]
|
2016-11-13 14:21:07 +00:00
|
|
|
; We fork some components by platform
|
2016-08-23 11:13:27 +00:00
|
|
|
.*/*[.]android.js
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2016-11-19 02:25:02 +00:00
|
|
|
; Ignore templates for 'react-native init'
|
|
|
|
.*/local-cli/templates/.*
|
2016-04-01 15:53:28 +00:00
|
|
|
|
2016-11-13 14:21:07 +00:00
|
|
|
; Ignore the website subdir
|
2016-07-06 19:49:08 +00:00
|
|
|
<PROJECT_ROOT>/website/.*
|
|
|
|
|
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 18:08:35 +00:00
|
|
|
; Ignore the Dangerfile
|
|
|
|
<PROJECT_ROOT>/danger/dangerfile.js
|
|
|
|
|
2016-11-13 14:21:07 +00:00
|
|
|
; Ignore "BUCK" generated dirs
|
2016-07-06 19:49:08 +00:00
|
|
|
<PROJECT_ROOT>/\.buckd/
|
|
|
|
|
2016-11-13 14:21:07 +00:00
|
|
|
; Ignore unexpected extra "@providesModule"
|
2016-11-04 12:40:26 +00:00
|
|
|
.*/node_modules/.*/node_modules/fbjs/.*
|
2016-07-06 19:49:08 +00:00
|
|
|
|
2016-11-13 14:21:07 +00: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 10:04:38 +00:00
|
|
|
.*/Libraries/react-native/React.js
|
2016-07-06 19:49:08 +00:00
|
|
|
|
2017-07-17 10:02:14 +00:00
|
|
|
; Ignore polyfills
|
|
|
|
.*/Libraries/polyfills/.*
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
[include]
|
|
|
|
|
|
|
|
[libs]
|
|
|
|
Libraries/react-native/react-native-interface.js
|
2016-03-08 20:38:52 +00:00
|
|
|
flow/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
[options]
|
2017-01-19 15:31:08 +00:00
|
|
|
emoji=true
|
|
|
|
|
2015-02-20 04:10:52 +00:00
|
|
|
module.system=haste
|
2015-04-25 05:43:01 +00:00
|
|
|
|
2015-07-30 03:19:40 +00:00
|
|
|
munge_underscores=true
|
|
|
|
|
2016-04-19 10:51:45 +00: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-27 01:30:46 +00:00
|
|
|
|
2015-06-11 22:35:26 +00:00
|
|
|
suppress_type=$FlowIssue
|
|
|
|
suppress_type=$FlowFixMe
|
2017-08-18 01:36:54 +00:00
|
|
|
suppress_type=$FlowFixMeProps
|
|
|
|
suppress_type=$FlowFixMeState
|
2015-06-11 22:35:26 +00:00
|
|
|
suppress_type=$FixMe
|
|
|
|
|
2017-09-06 10:25:01 +00:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(5[0-4]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)
|
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(5[0-4]\\|[1-4][0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native_oss[a-z,_]*\\)?)\\)?:? #[0-9]+
|
2015-06-22 16:43:30 +00:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
2017-02-17 02:59:55 +00:00
|
|
|
suppress_comment=\\(.\\|\n\\)*\\$FlowExpectedError
|
2015-06-11 22:35:26 +00:00
|
|
|
|
2016-07-14 11:51:21 +00:00
|
|
|
unsafe.enable_getters_and_setters=true
|
|
|
|
|
2015-04-25 05:43:01 +00:00
|
|
|
[version]
|
2017-09-06 10:25:01 +00:00
|
|
|
^0.54.0
|