forked from facebook/buck
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.buckconfig
30 lines (29 loc) · 818 Bytes
/
.buckconfig
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
[java]
# Indicates that any folder named src or test
# are folders that contain Java code.
src_roots = src, test
[alias]
buck = //src/com/facebook/buck/cli:cli
[buildfile]
includes = //DEFS
[project]
ignore = \
.git, \
.buckd, \
build, \
test/com/facebook/buck/cli/testdata, \
test/com/facebook/buck/java/testdata, \
test/com/facebook/buck/junit/testdata, \
test/com/facebook/buck/parser/testdata, \
test/com/facebook/buck/shell/testdata,
# Common temp file patterns:
# .*\.swp$ (vim)
# ^#.*#$, .*~$ (emacs)
# .*___jb_bak___$, .*___jb_old___$ (intellij idea)
temp_files = \
.*\.swp$, \
^#.*#$, .*~$, \
.*___jb_bak___$, .*___jb_old___$,
[test]
# Maximum timeout of 1 minute per test.
timeout = 60000