mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2026-05-12 03:28:51 +02:00
Remove language overrides and simplify .gitattributes, delete editor-specific .vscode/.editorconfig, and move .vscode/.shellcheckrc to repository root (.shellcheckrc). Remove Python- and API-specific entries from .gitignore. Reformat markdown tables and minor whitespace fixes in CONTRIBUTING.md and README.md to improve consistency and readability.
28 lines
816 B
Plaintext
28 lines
816 B
Plaintext
# ---------------------------------------
|
|
# Treat Shell files as first-class code
|
|
# ---------------------------------------
|
|
*.sh linguist-detectable=true
|
|
*.bash linguist-language=Shell
|
|
*.func linguist-language=Shell
|
|
*.install linguist-language=Shell
|
|
|
|
# ---------------------------------------
|
|
# Exclude documentation from stats
|
|
*.md linguist-documentation
|
|
README.md linguist-documentation
|
|
CONTRIBUTING.md linguist-documentation
|
|
SECURITY.md linguist-documentation
|
|
|
|
# ---------------------------------------
|
|
# Exclude generated/config files
|
|
*.json linguist-generated
|
|
*.lock linguist-generated
|
|
*.yml linguist-generated
|
|
*.yaml linguist-generated
|
|
.github/** linguist-generated
|
|
.vscode/** linguist-generated
|
|
|
|
# ---------------------------------------
|
|
# Standard text handling
|
|
* text=auto eol=lf
|