mirror of
https://github.com/langgenius/dify-ee-helm-chart-values-generator.git
synced 2026-07-01 20:14:02 -04:00
10f38ce0b9
- 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
28 lines
392 B
INI
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
|
|
|