.editorconfig
# This is the project's root directoryroot = true [*]# Use spaces for indentationindent_style = space# Each indent should contain 2 spacesindent_size = 2# Use Unix line endingsend_of_line = lf# The files are utf-8 encodedcharset = utf-8# No whitespace at the end of linetrim_trailing_whitespace = true# A file must end with an empty line - this is good for version control systemsinsert_final_newline = true# A line should not have more than this amount of chars (not supported by all plugins)max_line_length = 100 [*.{py,md,txt}]indent_size = 4 [makefile]# Use tabs for indentation (Makefiles require tabs)indent_style = tab