mirror of
https://github.com/weewx/weewx.git
synced 2026-04-19 17:16:56 -04:00
28 lines
506 B
INI
28 lines
506 B
INI
#
|
|
# See https://editorconfig.org for the meaning of this file.
|
|
#
|
|
|
|
root = true
|
|
|
|
# Python files. This is the alternate max length specified by PEP8.
|
|
[*.py]
|
|
max_line_length = 99
|
|
|
|
# HTML files
|
|
[*.{htm,html}]
|
|
max_line_length = 120
|
|
|
|
# Cheetah templates:
|
|
[*.{tmpl,inc}]
|
|
max_line_length = 120
|
|
|
|
# No limits for the weewx.conf file
|
|
[weewx.conf]
|
|
max_line_length = off
|
|
|
|
[*.md]
|
|
# Please keep this at 80. Even an IBM punch card can do that.
|
|
max_line_length = 80
|
|
|
|
[makefile]
|
|
indent_style = tab |