- Move frontend/public/json/ to json/ (top-level) - Update all workflow path references to json/ - Delete frontend-cicd.yml workflow - Delete frontend/ directory entirely - Clean up .gitattributes (remove frontend entries)
34 lines
972 B
Plaintext
34 lines
972 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
|
|
|
|
# ---------------------------------------
|
|
# Treat Golang files as Go (for /api/)
|
|
api/**/*.go linguist-language=Go
|
|
|
|
# ---------------------------------------
|
|
# 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
|
|
json/*.json linguist-generated=false
|
|
*.lock linguist-generated
|
|
*.yml linguist-generated
|
|
*.yaml linguist-generated
|
|
.github/** linguist-generated
|
|
.vscode/** linguist-generated
|
|
|
|
# ---------------------------------------
|
|
# Standard text handling
|
|
* text=auto eol=lf
|