diff options
author | Michael Reed <m.reed@mykolab.com> | 2016-01-08 17:43:48 -0500 |
---|---|---|
committer | Michael Reed <m.reed@mykolab.com> | 2016-01-08 17:47:09 -0500 |
commit | 94fabe4d596dacc15a62767d24d785d9a7bd2a4b (patch) | |
tree | 982890a5a9d24cf104a397a46be45ab037e272ec | |
parent | d51a27b7e58c9cdbc1bf10958254fe666603f3f2 (diff) | |
download | rneovim-94fabe4d596dacc15a62767d24d785d9a7bd2a4b.tar.gz rneovim-94fabe4d596dacc15a62767d24d785d9a7bd2a4b.tar.bz2 rneovim-94fabe4d596dacc15a62767d24d785d9a7bd2a4b.zip |
CONTRIBUTING.md: Remove outdated info
- Remove mention of "build-issues" and "runtime-issues" sections from
the "Troubleshooting" page; they're already mentioned at the top of
the section: "Before reporting an issue, see the ...".
- As of [1], clint-ignored-files.txt isn't used anymore.
[1]: 57eaefbb232c18ea2fa44801eb30f0727278c6f6
-rw-r--r-- | CONTRIBUTING.md | 22 |
1 files changed, 7 insertions, 15 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index aa88837290..1787a4322b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -23,15 +23,10 @@ If your issue isn't mentioned there: your problem persists. - If you're experiencing compile or runtime warnings/failures, try searching for the error message(s) you received (if any) on [Neovim's issue tracker][github-issues]. - - For build issues, see - [Troubleshooting#build-issues][wiki-troubleshooting-build-issues]. - - For runtime issues, see - [Troubleshooting#runtime-issues][wiki-troubleshooting-runtime-issues]. - If your issue isn't mentioned there, try reproducing it using `nvim` - with the smallest possible `vimrc` (or none at all via `nvim -u NONE`), - to rule out bugs in plugins you're using. - If you're using a plugin manager, comment out your plugins, then add - them back in one by one. +- For runtime issues, try reproducing it using `nvim` with the smallest + possible `vimrc` (or none at all via `nvim -u NONE`), to rule out bugs in + plugins you're using. If you're using a plugin manager, comment out your + plugins, then add them back in one by one. Include as much detail as possible; we generally need to know: @@ -112,10 +107,9 @@ happen to be modifying anyway. Fix anything that looks outright otherwise prefer to leave things as they are. For new code, run `make lint` (which runs [clint.py][clint]) to detect style -errors. Make sure that the file(s) you intend to be linted are not in -`clint-ignored-files.txt`. It's not perfect, so some warnings may be false -positives/negatives. To have `clint.py` ignore certain cases, put `// NOLINT` -at the end of the line. +errors. It's not perfect, so some warnings may be false positives/negatives. +To have `clint.py` ignore certain cases, put `// NOLINT` at the end of the +line. We also provide a configuration file for [`clang-format`][clang-format], which can be used to format code according to the style guidelines. Be aware that @@ -196,6 +190,4 @@ such as [`tig`][tig]. [wiki-contributing]: https://github.com/neovim/neovim/wiki/Contributing [wiki-faq]: https://github.com/neovim/neovim/wiki/FAQ [wiki-review-checklist]: https://github.com/neovim/neovim/wiki/Code-review-checklist -[wiki-troubleshooting-build-issues]: https://github.com/neovim/neovim/wiki/Troubleshooting#build-issues -[wiki-troubleshooting-runtime-issues]: https://github.com/neovim/neovim/wiki/Troubleshooting#runtime-issues [wiki-troubleshooting]: https://github.com/neovim/neovim/wiki/Troubleshooting |