From 741a09a90f81aec150bccaddc3c929ffd4f33de9 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Sun, 30 Jul 2023 14:00:50 +0200 Subject: [PATCH 1/2] refactor(docs): Move contributing docs to the top level --- docs/contributing.md => CONTRIBUTING.md | 2 +- README.md | 2 +- docs/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename docs/contributing.md => CONTRIBUTING.md (93%) diff --git a/docs/contributing.md b/CONTRIBUTING.md similarity index 93% rename from docs/contributing.md rename to CONTRIBUTING.md index 2cd38c5ddbe..d1c63372567 100644 --- a/docs/contributing.md +++ b/CONTRIBUTING.md @@ -28,7 +28,7 @@ For easier development we use a monorepo structure. This means that we have multiple packages in one git repository. We use [melos](https://pub.dev/packages/melos) to manage the packages in this repository. -Take a look at our [melos.yaml](../melos.yaml) to find useful commands for running commands like build_runner or the analyzer in all packages. +Take a look at our [melos.yaml](melos.yaml) to find useful commands for running commands like build_runner or the analyzer in all packages. ## Linting We use very strict static code analysis (also known as linting) rules. diff --git a/README.md b/README.md index 31358f691b6..ea57bd1bcec 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ Developing a new Nextcloud client can be as easy as adding some UI and then nece ## Contributing -Checkout our [contributing docs](./docs/contributing.md) to get started with developing with Neon. +Checkout our [contributing docs](CONTRIBUTING.md) to get started with developing with Neon. ## Development and support diff --git a/docs/README.md b/docs/README.md index c69b3a9166c..aa9e29cbb8f 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,6 +1,6 @@ # Documentation -## [Contributing](contributing.md) +## [Contributing](../CONTRIBUTING.md) ## [Architecture overview](architecture.md) From 46417ddd825c1f4bdef10d0735c9be7a98aec487 Mon Sep 17 00:00:00 2001 From: jld3103 Date: Sun, 30 Jul 2023 14:01:31 +0200 Subject: [PATCH 2/2] feat(docs): Add CoC to docs ToC --- docs/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/README.md b/docs/README.md index aa9e29cbb8f..d99e4c8dee1 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,5 +1,7 @@ # Documentation +## [Code of Conduct](../CODE_OF_CONDUCT.md) + ## [Contributing](../CONTRIBUTING.md) ## [Architecture overview](architecture.md)