editorconfig-tools icon indicating copy to clipboard operation
editorconfig-tools copied to clipboard

indent_char warnings not aware of Python, Ash syntax

Open mcandre opened this issue 9 years ago • 0 comments

When linting Python and Ash shell code, editorconfig-tools appears to use a simple line-by-line check, though this creates wrong warnings.

.editorconfig:

[{*.py}]
indent_size = 4

test.py:

'''
  Just a comment here
'''

def main():
    pass

mcandre avatar Dec 05 '16 06:12 mcandre