-
Notifications
You must be signed in to change notification settings - Fork 3
/
ackrc
37 lines (30 loc) · 758 Bytes
/
ackrc
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
# Only search with case sensitivity if there is mixed case
--smart-case
# Follow symlinks
--follow
# Ignore some folders
--ignore-dir=tmp
--ignore-dir=log
--ignore-dir=build
--ignore-dir=.git
--ignore-dir=.gem
--ignore-dir=.sass-cache
--ignore-dir=.idea
# Add Markdown, Textile, and reStructuredText
--type-set=plaintext=.md,.mdown,.markdown,.mkdn,.textile,.rst,.txt,.asciidoc,.asc
# Plain text CSV files
--type-set=csv=.txt,.csv,.tsv
# Add in a type for gettext messages
--type-set=gettext=.pot,.po
# More types
--type-set=sass=sass
--type-set=scss=scss
--type-set=coffee=coffee
--type-set=RDOC=rdoc
--type-set=cucumber=feature
--type-add=ruby=rake,haml
--type-add=vim=vimrc,gvimrc
--type-add=js=json
# Types to ignore by default
--nogettext
--noxml