Skip to content

Commit eebb90a

Browse files
committed
Merge remote-tracking branch 'origin/main' into tido/suggestion-bot/move-into-repo
2 parents b4f8122 + 6b78e85 commit eebb90a

File tree

1,530 files changed

+163866
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,530 files changed

+163866
-0
lines changed

.changeset/README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by
4+
`@changesets/cli`, a build tool that works with multi-package repos, or
5+
single-package repos to help you version and publish your code. You can find the
6+
full documentation for it
7+
[in our repository](https://github.com/changesets/changesets)
8+
9+
We have a quick list of common questions to get you started engaging with this
10+
project in
11+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/config@3.1.1/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": ["@changesets/cli/commit", { "skipCI": false }],
5+
"privatePackages": false,
6+
"access": "public",
7+
"baseBranch": "origin/main",
8+
"ignore": [
9+
"@rnx-kit/ignore",
10+
"@rnx-kit/template",
11+
"@rnx-kit/test-app",
12+
"@rnx-kit/test-app-macos",
13+
"@rnx-kit/test-app-windows"
14+
]
15+
}

.changeset/huge-badgers-obey.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.changeset/wise-beans-cross.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@rnx-kit/eslint-plugin": patch
3+
---
4+
5+
Added a rule for unnecessary array allocations

.clang-format

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
BasedOnStyle: LLVM
2+
AccessModifierOffset: -4
3+
AllowShortFunctionsOnASingleLine: None
4+
AlwaysBreakBeforeMultilineStrings: true
5+
AlwaysBreakTemplateDeclarations: true
6+
BinPackArguments: false
7+
BinPackParameters: false
8+
BreakBeforeBraces: Linux
9+
ColumnLimit: 100
10+
Cpp11BracedListStyle: true
11+
IncludeBlocks: Regroup
12+
IncludeCategories:
13+
- Regex: '"pch\.h"'
14+
Priority: -1
15+
- Regex: "^<RNX"
16+
Priority: 4
17+
- Regex: "^<React"
18+
Priority: 4
19+
- Regex: "^<[._a-z]+>"
20+
Priority: 2
21+
- Regex: "^<"
22+
Priority: 3
23+
- Regex: '.\*'
24+
Priority: 10
25+
IndentCaseLabels: true
26+
IndentWidth: 4
27+
NamespaceIndentation: All
28+
ObjCSpaceAfterProperty: true
29+
ObjCSpaceBeforeProtocolList: true
30+
PenaltyReturnTypeOnItsOwnLine: 100
31+
PointerAlignment: Right
32+
SpacesBeforeTrailingComments: 2
33+
SpacesInContainerLiterals: false
34+
TabWidth: 4

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[*.{kt,kts}]
2+
ktlint_code_style = android_studio

.gitattributes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
* text=auto
2+
**/test/__fixtures__/** linguist-generated=false
3+
*.pbxproj -text
4+
/.yarn/releases/* binary

.github/CODEOWNERS

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
* @acoates-ms @JasonVMo @Saadnajmi @tido64
2+
3+
# Miscellaneous
4+
/CODE_OF_CONDUCT.md @microsoft/react-native-sdk-admins
5+
/LICENSE @microsoft/react-native-sdk-admins
6+
/SECURITY.md @microsoft/react-native-sdk-admins
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
name: "Bug report \U0001F41B"
3+
about: Create a report to help us improve
4+
title: ""
5+
labels: ""
6+
assignees: ""
7+
---
8+
9+
### Description
10+
11+
<!--
12+
Thank you for taking the time to file this issue.
13+
14+
Please describe it in detail here:
15+
- What happened?
16+
- What did you expect to happen?
17+
- Can you attach build logs?
18+
- Can you attach screenshots?
19+
20+
Please note that rnx-kit is still in the early stages of development.
21+
We are hard at work, adding new packages and features on a regular basis.
22+
We welcome your feedback in this bug report. Given our focus on building
23+
out the first "complete" version of @rnx-kit, supporting external users is
24+
not currently a high priority, so we unfortunately cannot guarantee prompt
25+
responses at this time.
26+
-->
27+
28+
### Your environment
29+
30+
- Affected package:
31+
- Version:
32+
- Tested platforms:
33+
- [ ] Android
34+
- [ ] iOS
35+
- [ ] macOS
36+
- [ ] Windows
37+
- System information:
38+
```
39+
# Run `npx react-native info` and paste the output here
40+
```
41+
42+
### Steps to reproduce
43+
44+
<!--
45+
Tell us how to reproduce this issue.
46+
Please provide a minimal demo where your issue can be easily reproduced.
47+
-->
Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
name: "Bug report \U0001F41B"
2+
description: Create a report to help us improve
3+
labels: [bug]
4+
body:
5+
- type: markdown
6+
attributes:
7+
value: |
8+
Thank you for taking the time to file this issue.
9+
10+
Please note that rnx-kit is still in the early stages of development.
11+
We are hard at work, adding new packages and features on a regular basis.
12+
We welcome your feedback in this bug report. Given our focus on building
13+
out the first "complete" version of @rnx-kit, supporting external users is
14+
not currently a high priority, so we unfortunately cannot guarantee prompt
15+
responses at this time.
16+
- type: textarea
17+
id: what-happened
18+
attributes:
19+
label: What happened?
20+
description: What did you expect to happen? Can you attach build logs? Can you attach screenshots?
21+
placeholder: Tell us what you see!
22+
validations:
23+
required: true
24+
- type: input
25+
id: package
26+
attributes:
27+
label: Affected Package
28+
description: Which package are you having issues with?
29+
placeholder: "Example: @rnx-kit/cli"
30+
validations:
31+
required: true
32+
- type: input
33+
id: version
34+
attributes:
35+
label: Version
36+
description: Which version of the affected package are you using?
37+
placeholder: "Example: 0.9.14"
38+
validations:
39+
required: true
40+
- type: checkboxes
41+
id: platforms
42+
attributes:
43+
label: Which platforms are you seeing this issue on?
44+
description: "Select all that apply:"
45+
options:
46+
- label: Android
47+
- label: iOS
48+
- label: macOS
49+
- label: Windows
50+
- type: textarea
51+
id: system-info
52+
attributes:
53+
label: System Information
54+
placeholder: Run `npx react-native info` and paste the output here.
55+
render: true
56+
validations:
57+
required: true
58+
- type: textarea
59+
id: repro-steps
60+
attributes:
61+
label: Steps to Reproduce
62+
description: Tell us how to reproduce this issue, or provide a minimal demo where your issue can be easily reproduced.
63+
placeholder: Tell us how to reproduce this issue.
64+
validations:
65+
required: true
66+
- type: checkboxes
67+
id: terms
68+
attributes:
69+
label: Code of Conduct
70+
description: By submitting this issue, you agree to follow our [Code of Conduct](https://github.com/microsoft/react-native-test-app/blob/trunk/CODE_OF_CONDUCT.md).
71+
options:
72+
- label: I agree to follow this project's Code of Conduct
73+
required: true

0 commit comments

Comments
 (0)