1
0
mirror of https://github.com/amix/vimrc synced 2025-06-23 06:35:01 +08:00
This is done by removing custom FileType indent options, and using
`vim-python-pep8-indent` plugin.
This commit is contained in:
Amir Salihefendic
2019-11-16 20:16:20 +01:00
parent 97e3db7fe9
commit 966965a156
22 changed files with 1857 additions and 4 deletions

View File

@ -0,0 +1,37 @@
How To Contribute
=================
``vim-python-pep8-indent`` is always open for suggestions and contributions by generous developers.
Ive collected a few tips to get you started.
Please:
- *Always* add tests for your code.
- Write `good commit messages`_.
Running Tests
-------------
- They are written in Ruby_ (sorry :() using vimrunner_ which requires rspec_.
- The tests go into ``spec/indent/indent_spec.rb``.
Look at the ``describe`` blocks to get the hang of it.
- Run the tests with the command::
$ rspec spec
- Alternatively you can use Docker::
$ make test_docker
- You can select tests based on line numbers, e.g.::
$ rspec ./spec/indent/indent_spec.rb:385
$ make test_docker RSPEC_ARGS=./spec/indent/indent_spec.rb:385
Thank you for considering to contribute!
.. _Ruby: https://www.ruby-lang.org/
.. _`good commit messages`: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
.. _vimrunner: https://github.com/AndrewRadev/vimrunner
.. _rspec: https://github.com/rspec/rspec