2015-02-20 07:10:52 +03:00
|
|
|
[ignore]
|
2024-08-19 19:19:35 +03:00
|
|
|
; Ignore build cache folder
|
2024-04-25 20:42:35 +03:00
|
|
|
<PROJECT_ROOT>/packages/react-native/sdks/.*
|
2016-04-01 18:53:28 +03:00
|
|
|
|
2024-06-07 17:53:59 +03:00
|
|
|
; Ignore the codegen e2e tests
|
|
|
|
<PROJECT_ROOT>/packages/react-native-codegen/e2e/__test_fixtures__/modules/NativeEnumTurboModule.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 21:08:35 +03:00
|
|
|
; Ignore the Dangerfile
|
2022-09-16 22:41:06 +03:00
|
|
|
<PROJECT_ROOT>/packages/react-native-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 21:08:35 +03:00
|
|
|
|
2016-11-13 17:21:07 +03:00
|
|
|
; Ignore "BUCK" generated dirs
|
2016-07-06 22:49:08 +03:00
|
|
|
<PROJECT_ROOT>/\.buckd/
|
|
|
|
|
2023-10-20 21:09:54 +03:00
|
|
|
; Ignore other platform suffixes
|
|
|
|
.*\.macos\.js$
|
|
|
|
.*\.windows\.js$
|
|
|
|
|
2022-02-23 16:12:33 +03:00
|
|
|
.*/node_modules/resolve/test/resolver/malformed_package_json/package\.json$
|
|
|
|
|
2023-08-31 18:34:33 +03:00
|
|
|
; Checked-in build output
|
|
|
|
<PROJECT_ROOT>/packages/debugger-frontend/dist/
|
|
|
|
|
2023-12-08 21:17:31 +03:00
|
|
|
; Generated build output
|
|
|
|
<PROJECT_ROOT>/packages/.*/dist
|
|
|
|
|
2024-06-06 17:06:29 +03:00
|
|
|
; helloworld
|
|
|
|
<PROJECT_ROOT>/packages/helloworld/ios/Pods/
|
|
|
|
|
2019-01-21 20:08:36 +03:00
|
|
|
[untyped]
|
|
|
|
.*/node_modules/@react-native-community/cli/.*/.*
|
|
|
|
|
2015-02-20 07:10:52 +03:00
|
|
|
[include]
|
|
|
|
|
2019-10-05 02:39:44 +03:00
|
|
|
[declarations]
|
|
|
|
.*/node_modules/.*
|
|
|
|
|
2015-02-20 07:10:52 +03:00
|
|
|
[libs]
|
2023-06-07 23:44:13 +03:00
|
|
|
flow-typed/
|
2023-03-17 15:03:25 +03:00
|
|
|
packages/react-native/interface.js
|
|
|
|
packages/react-native/flow/
|
2015-02-20 07:10:52 +03:00
|
|
|
|
|
|
|
[options]
|
2023-02-03 14:03:41 +03:00
|
|
|
enums=true
|
2023-11-09 12:02:55 +03:00
|
|
|
casting_syntax=both
|
2023-02-03 14:03:41 +03:00
|
|
|
|
2017-01-19 18:31:08 +03:00
|
|
|
emoji=true
|
|
|
|
|
2019-12-09 22:00:46 +03:00
|
|
|
exact_by_default=true
|
|
|
|
|
2021-04-30 19:11:33 +03:00
|
|
|
format.bracket_spacing=false
|
|
|
|
|
2019-04-08 23:20:03 +03:00
|
|
|
module.file_ext=.js
|
|
|
|
module.file_ext=.json
|
2023-08-24 19:54:15 +03:00
|
|
|
|
|
|
|
experimental.multi_platform=true
|
|
|
|
experimental.multi_platform.extensions=.ios
|
|
|
|
experimental.multi_platform.extensions=.android
|
2019-04-08 23:20:03 +03:00
|
|
|
|
2015-07-30 06:19:40 +03:00
|
|
|
munge_underscores=true
|
|
|
|
|
2023-03-17 15:03:25 +03:00
|
|
|
module.name_mapper='^react-native$' -> '<PROJECT_ROOT>/packages/react-native/index.js'
|
2023-08-23 02:00:39 +03:00
|
|
|
module.name_mapper='^react-native/\(.*\)$' -> '<PROJECT_ROOT>/packages/react-native/\1'
|
2023-08-22 18:08:15 +03:00
|
|
|
module.name_mapper='^@react-native/dev-middleware$' -> '<PROJECT_ROOT>/packages/dev-middleware'
|
2024-07-17 22:37:01 +03: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\|xml\)$' -> '<PROJECT_ROOT>/packages/react-native/Libraries/Image/RelativeImageStub'
|
2015-08-27 04:30:46 +03:00
|
|
|
|
2015-06-12 01:35:26 +03:00
|
|
|
suppress_type=$FlowIssue
|
|
|
|
suppress_type=$FlowFixMe
|
2017-08-18 04:36:54 +03:00
|
|
|
suppress_type=$FlowFixMeProps
|
|
|
|
suppress_type=$FlowFixMeState
|
2019-08-07 19:59:42 +03:00
|
|
|
suppress_type=$FlowFixMeEmpty
|
2015-06-12 01:35:26 +03:00
|
|
|
|
2018-06-20 09:54:16 +03:00
|
|
|
[lints]
|
|
|
|
sketchy-null-number=warn
|
|
|
|
sketchy-null-mixed=warn
|
2019-02-08 00:56:47 +03:00
|
|
|
sketchy-number=warn
|
|
|
|
untyped-type-import=warn
|
|
|
|
nonstrict-import=warn
|
2021-07-30 02:34:42 +03:00
|
|
|
deprecated-type=error
|
2019-02-08 00:56:47 +03:00
|
|
|
unsafe-getters-setters=warn
|
|
|
|
unnecessary-invariant=warn
|
2023-03-28 09:50:24 +03:00
|
|
|
unused-promise=error
|
2018-06-20 09:54:16 +03:00
|
|
|
|
|
|
|
[strict]
|
|
|
|
deprecated-type
|
|
|
|
nonstrict-import
|
|
|
|
sketchy-null
|
|
|
|
unclear-type
|
|
|
|
unsafe-getters-setters
|
|
|
|
untyped-import
|
|
|
|
untyped-type-import
|
|
|
|
|
2015-04-25 08:43:01 +03:00
|
|
|
[version]
|
2024-09-05 10:45:35 +03:00
|
|
|
^0.245.2
|