-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathripgreprc
More file actions
46 lines (41 loc) · 776 Bytes
/
ripgreprc
File metadata and controls
46 lines (41 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Version Control
--glob=!.git/
# Package Managers & Dependencies
--glob=!node_modules/
--glob=!bower_components/
--glob=!vendor/
--glob=!.venv/
--glob=!venv/
# Lock Files (Noise reduction)
--glob=!package-lock.json
--glob=!pnpm-lock.yaml
--glob=!yarn.lock
--glob=!bun.lockb
--glob=!Cargo.lock
--glob=!Gemfile.lock
--glob=!composer.lock
--glob=!go.sum
--glob=!poetry.lock
# Build Outputs & Artifacts
--glob=!target/
--glob=!dist/
--glob=!out/
--glob=!output/
--glob=!*.min.js
--glob=!*.min.css
--glob=!*.map
# System & IDE
--glob=!.DS_Store
--glob=!.idea/
--glob=!.vscode/
--glob=!.settings/
--glob=!Thumbs.db
# Language Specific
--glob=!__pycache__/
--glob=!*.pyc
--glob=!*.pyo
--glob=!.pytest_cache/
--glob=!.mypy_cache/
--glob=!.next/
--glob=!.nuxt/
--glob=!coverage/