.editorconfig
author Matt Harbison <matt_harbison@yahoo.com>
Wed, 01 Mar 2023 13:11:51 -0500
changeset 50378 ebf1a07539b9
parent 45392 c25efc468a49
permissions -rw-r--r--
statichttprepo: fix the vfs.join() method to match the base class definition Flagged by PyCharm. The superclass implementation raised NotImplementedError.

# See http://EditorConfig.org for the specification

root = true

[*.py]
indent_size = 4
indent_style = space
trim_trailing_whitespace = true
end_of_line = lf

[*.{c,h}]
indent_size = 8
indent_style = tab
trim_trailing_whitespace = true
end_of_line = lf

[*.t]
indent_size = 2
indent_style = space
trim_trailing_whitespace = false
end_of_line = lf