17 lines
503 B
Plaintext
17 lines
503 B
Plaintext
# See https://git-scm.com/docs/gitattributes#_pattern_format for more about `.gitattributes`.
|
|
|
|
# Normalize EOL for all files that Git considers text files
|
|
* text=auto eol=lf
|
|
|
|
# Mark lock files as generated to avoid diffing
|
|
pnpm-lock.yaml linguist-generated
|
|
package-lock.json linguist-generated
|
|
bun.lockb linguist-generated
|
|
yarn.lock linguist-generated
|
|
|
|
# Exclude templates from language statistics
|
|
templates/**/* linguist-vendored
|
|
|
|
# Other generated files
|
|
packages/browser/src/gen/** linguist-generated
|