Skip to content

Commit c7d5b33

Browse files
committed
Merge branch 'main' into patch-1
2 parents 296b8e4 + f63a002 commit c7d5b33

File tree

848 files changed

+71927
-18211
lines changed

Some content is hidden

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

848 files changed

+71927
-18211
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
<!--
2+
13
# READ ME PLEASE
24
35
> **TL;DR: Make sure to add your changes to versioned docs**
@@ -7,3 +9,5 @@ Thanks for opening a PR!
79
The docs cover several versions of `react-navigation`, and in some cases there are several files (for version 1, version 2 and etc.) that all describe a single page of the docs (eg. "Getting Started").
810
911
Please make sure that the edit you're making in `docs/file-you-edited.md` is also included in the file for the correct version, eg. `/versioned_docs/version-3.x/file-you-edited.md` for version 3. If such file doesn't exist, please create it. :+1:
12+
13+
-->

.github/workflows/autofix.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
name: autofix.ci
22

33
on:
4-
push:
5-
branches:
6-
- main
74
pull_request:
85
branches:
96
- main
@@ -22,7 +19,10 @@ jobs:
2219
uses: ./.github/actions/setup
2320

2421
- name: Fix lint issues
25-
run: yarn markdownlint-cli2-fix
22+
run: yarn markdownlint-cli2 --fix
23+
24+
- name: Prettify code
25+
run: yarn prettier --write .
2626

2727
- name: Autofix
28-
uses: autofix-ci/action@8106fde54b877517c9af2c3d68918ddeaa7bed64
28+
uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,5 +17,8 @@ jobs:
1717
- name: Lint markdown
1818
run: yarn markdownlint-cli2
1919

20+
- name: Run tests
21+
run: yarn test
22+
2023
- name: Build pages
2124
run: yarn build

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Deploy
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches:
67
- main

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ node_modules
22
.DS_Store
33
.docusaurus
44
.history
5+
.idea
56

67
build/
78
translated_docs/
@@ -16,3 +17,6 @@ i18n/*
1617
!.yarn/releases
1718
!.yarn/sdks
1819
!.yarn/versions
20+
21+
# AI
22+
.claude/

.markdownlint.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ MD013: false
55

66
# Disable checks for inline HTML
77
MD033: false
8+
9+
# Descriptive link text
10+
MD059: false

.prettierignore

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

.prettierrc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
"tabWidth": 2,
44
"trailingComma": "es5",
55
"useTabs": false
6-
}
6+
}

.vscode/settings.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"editor.formatOnSave": true,
3+
"editor.codeActionsOnSave": ["source.organizeImports", "source.fixAll"]
4+
}

0 commit comments

Comments
 (0)