Files
Petrus Han 10f38ce0b9 feat: prepare project for open source release
- Add MIT License
- Add CONTRIBUTING.md with contribution guidelines
- Add Chinese README (README.zh.md)
- Optimize English README with badges and better structure
- Add .editorconfig for consistent code style
- Add .flake8 for Python code linting
- Add GitHub Actions CI workflow
- Update .gitignore for better file management
2025-11-24 09:59:15 +08:00

28 lines
392 B
INI

# EditorConfig is awesome: https://EditorConfig.org
root = true
[*]
charset = utf-8
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.py]
indent_style = space
indent_size = 4
max_line_length = 120
[*.{yaml,yml}]
indent_style = space
indent_size = 2
[*.md]
trim_trailing_whitespace = false
max_line_length = off
[*.sh]
indent_style = space
indent_size = 2