-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathbacon.toml
More file actions
53 lines (47 loc) · 1.28 KB
/
Copy pathbacon.toml
File metadata and controls
53 lines (47 loc) · 1.28 KB
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
53
# This is a configuration file for the bacon tool
#
# Complete help on configuration: https://dystroy.org/bacon/config/
default_job = "biome-backend"
[jobs.biome-backend]
env.RAYON_NUM_THREADS = "1" # for reproducible order
command = [
"npx", "@biomejs/biome", "lint",
"--colors", "force",
"./libs",
"--skip", "complexity/useArrowFunction",
"--skip", "style/useTemplate",
]
need_stdout = true
analyzer = "biome"
watch = ["libs"]
[jobs.biome-client]
env.RAYON_NUM_THREADS = "1" # for reproducible order
command = [
"npx", "@biomejs/biome", "lint",
"--colors", "force",
"./src",
"--skip", "complexity/useArrowFunction",
"--skip", "style/useTemplate",
"--skip", "style/noArguments",
"--skip", "style/useConst",
"--skip", "suspicious/noRedundantUseStrict",
"--skip", "style/useSingleVarDeclarator",
"--skip", "complexity/noForEach",
"--skip", "style/noParameterAssign",
"--skip", "complexity/useLiteralKeys",
"--skip", "suspicious/noAssignInExpressions", # TODO clean
]
need_stdout = true
analyzer = "biome"
watch = [
"src",
"biome.json",
]
[jobs.eslint-libs]
command = ["npx", "eslint", "--color", "libs/*"]
need_stdout = true
analyzer = "eslint"
watch = ["libs"]
[keybindings]
b = "job:biome-backend"
c = "job:biome-client"