mirror of
https://github.com/community-scripts/ProxmoxVE.git
synced 2025-06-29 02:27:37 +00:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
# ---------------------------------------
|
|
# Treat Shell files as first-class code
|
|
# ---------------------------------------
|
|
*.sh linguist-detectable=true
|
|
*.bash linguist-language=Shell
|
|
*.func linguist-language=Shell
|
|
*.install linguist-language=Shell
|
|
|
|
# ---------------------------------------
|
|
# Treat Golang files as Go (for /api/)
|
|
api/**/*.go linguist-language=Go
|
|
|
|
# ---------------------------------------
|
|
# Treat frontend as JavaScript/TypeScript (optional)
|
|
frontend/**/*.ts linguist-language=TypeScript
|
|
frontend/**/*.js linguist-language=JavaScript
|
|
|
|
# ---------------------------------------
|
|
# Exclude documentation from stats
|
|
*.md linguist-documentation
|
|
docs/** 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
|