-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathignore
More file actions
52 lines (43 loc) · 655 Bytes
/
Copy pathignore
File metadata and controls
52 lines (43 loc) · 655 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
47
48
49
50
51
52
# Instruct tools like ripgrep what to ignore when searching.
## Directories
/bin/stubs
# For Middleman
/build/
/coverage/
/doc/
/log/
/public/assets/
/tmp/
# Ignore local JS-related files
/node_modules/
/bower_components/
.git/
## Files
# ctags file
/tags
*.jpg
*.jpeg
*.png
*.gif
*.tiff
*.bmp
*.svg
/spec/fixtures/*.sql
.keep
.gitkeep
# Search these hidden directories even if I don't pass `--hidden`
!.circleci/
!.github/
# JS
yarn.lock
package-lock.json
# Jest snapshots
__snapshots__
# Huge JS files that mess up the vim quickfix window
highlight.all.js
highlight.pack.js
vendor/assets/javascript/select2.js
# Rust
Cargo.lock
!.vscode/
!.env