* Cleanup repository configs * more cleanup and convention checks * apply black and isort * fullfil conventions * make a matrix test on travis * correct travis rules * merge my global isort config into setup.cfg, that is why local tests are green, and ci tests are red * black did not work on Python2 so do not check-black on Python2.7 * fix isort behaviour so that black mode 3 is used
40 lines
990 B
INI
40 lines
990 B
INI
# EditorConfig Configurtaion file, for more details see:
|
|
# http://EditorConfig.org
|
|
# EditorConfig is a convention description, that could be interpreted
|
|
# by multiple editors to enforce common coding conventions for specific
|
|
# file types
|
|
|
|
# top-most EditorConfig file:
|
|
# Will ignore other EditorConfig files in Home directory or upper tree level.
|
|
root = true
|
|
|
|
|
|
[*] # For All Files
|
|
# Unix-style newlines with a newline ending every file
|
|
end_of_line = lf
|
|
insert_final_newline = true
|
|
trim_trailing_whitespace = true
|
|
# Set default charset
|
|
charset = utf-8
|
|
# Indent style default
|
|
indent_style = space
|
|
# Max Line Length - a hard line wrap, should be disabled
|
|
max_line_length = off
|
|
|
|
[*.{py,cfg,ini}]
|
|
# 4 space indentation
|
|
indent_size = 4
|
|
|
|
[*.{yml}]
|
|
# 2 space indentation
|
|
indent_size = 2
|
|
|
|
[*.{js}]
|
|
# Tab indentation (no size specified)
|
|
indent_style = tab
|
|
|
|
[{Makefile,.gitmodules}]
|
|
# Tab indentation (no size specified, but view as 4 spaces)
|
|
indent_style = tab
|
|
indent_size = unset
|
|
tab_width = unset
|