1
0
зеркало из https://github.com/glebtv/tui-textarea.git synced 2026-09-05 23:25:50 +03:00
Этот коммит содержится в:
rhysd
2022-06-13 20:25:59 +09:00
родитель 77e8bd5f76
Коммит 35b4fb3fd9
2 изменённых файлов: 26 добавлений и 5 удалений

16
CONTRIBUTING.md Обычный файл
Просмотреть файл

@@ -0,0 +1,16 @@
Please ensure that all tests and linter checks passed on your branch before creating a PR which modifies some source files.
To run tests:
```sh
cargo test -- --skip src/lib.rs
```
`--skip` is necessary since `cargo test` tries to run code blocks in [README file](./README.md).
To run linters:
```sh
cargo clippy --all-features --examples
cargo fmt -- --check
```