chore(editorconfig): add rules for *.md and *.py w.r.t isort/flake8

This commit is contained in:
Saurabh Kumar 2015-04-28 13:07:25 +05:30
parent c54628c90e
commit f8160a089d
2 changed files with 13 additions and 0 deletions

View File

@ -16,5 +16,8 @@ indent_size = 4
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab

View File

@ -12,9 +12,19 @@ trim_trailing_whitespace = true
indent_style = space
indent_size = 4
[*.py]
# https://github.com/timothycrosley/isort/wiki/isort-Settings
line_length=120
known_first_party={{ cookiecutter.repo_name }}
multi_line_output=3
default_section=THIRDPARTY
[*.yml]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
[Makefile]
indent_style = tab