22 lines
276 B
Plaintext
22 lines
276 B
Plaintext
# Basic ignore patterns
|
|
*.log
|
|
*.secret
|
|
|
|
# data dir related prod files
|
|
data/*.csv
|
|
|
|
# Ignore temp build artifacts
|
|
/bin/*
|
|
/dist/*
|
|
!bin/.gitkeep
|
|
|
|
# Ignore Pester test result files
|
|
coverage.xml
|
|
testResults.xml
|
|
|
|
# Ignore NodeJS modules
|
|
node_modules
|
|
|
|
# Ignore local env setups
|
|
.env
|