-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.gitattributes
More file actions
19 lines (16 loc) · 674 Bytes
/
.gitattributes
File metadata and controls
19 lines (16 loc) · 674 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Set the repository to show as TypeScript rather than JS in GitHub
*.ts linguist-language=TypeScript
# Exclude JavaScript config files from language detection
*.config.js linguist-detectable=false
*.config.mjs linguist-detectable=false
eslint.config.mjs linguist-detectable=false
prettier.config.js linguist-detectable=false
jest.config.mjs linguist-detectable=false
# Exclude generated and build files
dist/* linguist-generated=true
coverage/* linguist-generated=true
node_modules/* linguist-vendored=true
# Exclude lock files and other non-source files
pnpm-lock.yaml linguist-generated=true
package-lock.json linguist-generated=true
yarn.lock linguist-generated=true