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
|
|
|
|
2016-11-13 06:21:07 -08:00
|
|
|
; Ignore the website subdir
|
2016-07-06 12:49:08 -07: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 11:08:35 -07:00
|
|
|
; Ignore the Dangerfile
|
|
|
|
<PROJECT_ROOT>/danger/dangerfile.js
|
|
|
|
|
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/.*
|
|
|
|
|
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/
|
2015-02-19 20:10:52 -08:00
|
|
|
|
|
|
|
[options]
|
2017-01-19 07:31:08 -08:00
|
|
|
emoji=true
|
|
|
|
|
2015-02-19 20:10:52 -08:00
|
|
|
module.system=haste
|
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
|
|
|
suppress_type=$FixMe
|
|
|
|
|
2017-09-06 03:25:01 -07: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 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
|
|
|
|
2016-07-14 04:51:21 -07:00
|
|
|
unsafe.enable_getters_and_setters=true
|
|
|
|
|
2015-04-24 22:43:01 -07:00
|
|
|
[version]
|
2017-09-06 03:25:01 -07:00
|
|
|
^0.54.0
|