35 lines
370 B
Plaintext
35 lines
370 B
Plaintext
# Ignore git items
|
|
.gitignore
|
|
.git/
|
|
:include .gitignore
|
|
|
|
# Common large paths
|
|
node_modules/
|
|
web-app/node_modules/
|
|
build/
|
|
dist/
|
|
.idea/
|
|
vendor/
|
|
.env/
|
|
.venv/
|
|
.tox/
|
|
*.min.js
|
|
|
|
# Common test paths
|
|
test/
|
|
tests/
|
|
*_test.go
|
|
|
|
# Semgrep rules folder
|
|
.semgrep
|
|
|
|
# Semgrep-action log folder
|
|
.semgrep_logs/
|
|
|
|
# Ignore VsCode files
|
|
.vscode/
|
|
*.code-workspace
|
|
*~
|
|
.eslintcache
|
|
|
|
consoleApi.ts |