Files
gh-jamie-bitflight-claude-s…/skills/python3-development/assets/.editorconfig
2025-11-29 18:49:58 +08:00

48 lines
653 B
INI

# EditorConfig: https://editorconfig.org/
# top-most EditorConfig file
root = true
# All (Defaults)
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
max_line_length = 120
# Markdown
[*.md]
indent_style = space
indent_size = 4
trim_trailing_whitespace = false
# Python
[*.py]
indent_style = space
indent_size = 4
# YAML
[*.{yml,yaml}]
indent_style = space
indent_size = 2
# Shell Script
[*.sh]
indent_style = space
indent_size = 4
# TOML
[*.toml]
indent_style = space
indent_size = 2
# JSON
[*.json]
indent_style = space
indent_size = 2
# Git commit messages
[COMMIT_EDITMSG]
max_line_length = 72