about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2019-03-20 15:34:09 +0300
committerAleksey Kladov <aleksey.kladov@gmail.com>2019-03-20 15:34:09 +0300
commit1ad322236dbe54ada2c284bda4a2b72830b3ff3d (patch)
treec263169c8455729d391485115dc496ba26da7b50 /docs/dev
parentac6749d18ca9f32eedbc88a68ec41dbb3342a1e1 (diff)
downloadrust-1ad322236dbe54ada2c284bda4a2b72830b3ff3d.tar.gz
rust-1ad322236dbe54ada2c284bda4a2b72830b3ff3d.zip
remove old contributing
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/CONTRIBUTING.md18
-rw-r--r--docs/dev/README.md6
2 files changed, 6 insertions, 18 deletions
diff --git a/docs/dev/CONTRIBUTING.md b/docs/dev/CONTRIBUTING.md
deleted file mode 100644
index a2efc7afa5a..00000000000
--- a/docs/dev/CONTRIBUTING.md
+++ /dev/null
@@ -1,18 +0,0 @@
-The project is in its early stages: contributions are welcome and would be
-**very** helpful, but the project is not _yet_ optimized for contribution.
-Moreover, it is doubly experimental, so there's no guarantee that any work here
-would reach production.
-
-To get an idea of how rust-analyzer works, take a look at the [ARCHITECTURE.md](./ARCHITECTURE.md)
-document.
-
-Useful labels on the issue tracker:
-  * [E-mentor](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-mentor)
-    issues have links to the code in question and tests,
-  * [E-easy](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-easy),
-    [E-medium](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-medium),
-    [E-hard](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-hard),
-    labels are *estimates* for how hard would be to write a fix.
-
-There's no formal PR check list: everything that passes CI (we use [bors](https://bors.tech/)) is valid,
-but it's a good idea to write nice commit messages, test code thoroughly, maintain consistent style, etc.
diff --git a/docs/dev/README.md b/docs/dev/README.md
index 74bf86f68a4..0c09dddfc96 100644
--- a/docs/dev/README.md
+++ b/docs/dev/README.md
@@ -35,3 +35,9 @@ https://rust-lang.zulipchat.com/#narrow/stream/185405-t-compiler.2Fwg-rls-2.2E0
 * [E-fun](https://github.com/rust-analyzer/rust-analyzer/issues?q=is%3Aopen+is%3Aissue+label%3AE-fun)
   is for cool, but probably hard stuff.
 
+# CI
+
+We use Travis for CI. Most of the things, including formatting, are checked by
+`cargo test` so, if `cargo test` passes locally, that's a good sign that CI will
+be green as well. We use bors-ng to enforce the [not rocket
+science](https://graydon2.dreamwidth.org/1597.html) rule.