mirror of
https://github.com/Tygs/0bin.git
synced 2023-08-10 21:13:00 +03:00
Bumping version, adding editor config file and a contribution section to the readme.
This commit is contained in:
parent
c13dc59629
commit
eda8c4ae22
17
.editorconfig
Normal file
17
.editorconfig
Normal file
@ -0,0 +1,17 @@
|
||||
# EditorConfig is awesome: http://EditorConfig.org
|
||||
|
||||
# top-most EditorConfig file
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
end_of_line = lf
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.py]
|
||||
indent_size = 4
|
||||
|
||||
[*.{html,js,rb,scss,xml,less,css}]
|
||||
indent_size = 2
|
13
README.rst
13
README.rst
@ -103,3 +103,16 @@ What does 0bin not implement?
|
||||
.. _node.js: http://nodejs.org/
|
||||
.. _is not worth it: http://stackoverflow.com/questions/201705/how-many-random-elements-before-md5-produces-collisions
|
||||
.. _WTF licence: http://en.wikipedia.org/wiki/WTFPL
|
||||
|
||||
Contributing
|
||||
=============
|
||||
|
||||
Please fork the project, clone your repository and add the original repo as an upstream remote to keep yours in sync.
|
||||
|
||||
For small fixes (typo and such), you can work on master.
|
||||
|
||||
For features, you should create a dedicated branch.
|
||||
|
||||
We don't require you to rebase/merge, ordinary merging is alright.
|
||||
|
||||
Once it's ready, just request a PR.
|
||||
|
@ -6,7 +6,7 @@
|
||||
######## NOT SETTINGS, JUST BOILER PLATE ##############
|
||||
import os
|
||||
|
||||
VERSION = '0.3'
|
||||
VERSION = '0.4'
|
||||
ROOT_DIR = os.path.dirname(os.path.abspath(__file__))
|
||||
LIBS_DIR = os.path.join(os.path.dirname(ROOT_DIR), 'libs')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user