forked from beezlebub0530/torque
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coafile
55 lines (47 loc) · 1.81 KB
/
.coafile
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
54
55
[all]
files = private-contracts/**/*.sol, raspberry-client/*.js, private-contracts/*.json,
raspberry-client/*.json, public-contracts/**/*.sol,
local-blockchain-manager/*.js, local-blockchain-manager/*.json,
mobile-client/*.js, mobile-client/*.json
ignore =
private-contracts/node_modules/**/*, private-contracts/build/**/*,
private-contracts/package-lock.json,
public-contracts/node_modules/**/*, public-contracts/build/**/*,
public-contracts/package-lock.json,
raspberry-client/node_modules/**/*, raspberry-client/package-lock.json
local-blockchain-manager/node_modules/**/*, local-blockchain-manager/package-lock.json,
mobile-client/node_modules/**/*, mobile-client/package-lock.json,
raspberry-client/package-lock.json
max_line_length = 79
use_spaces = True
[all.JavaScript]
bears = ESLintBear, JSHintBear
files = private-contracts/**/*.js, public-contracts/**/*.js,
raspberry-client/**/*.js, local-blockchain-manager/*.js,
mobile-client/**/*.js
jshint_config = .jshintrc
[all.JSON]
bears = JSONFormatBear
files = private-contracts/**/*.json, private-chain/genesis.json,
raspberry-client/*.json, public-contracts/*.json,
local-blockchain-manager/*.json, mobile-client/*.json
default_actions = JSONFormatBear: ApplyPatchAction
[bash]
bears = ShellCheckBear
files = private-chain/**/*.sh, public-chain/**/*.sh
[all.linelength]
bears = LineLengthBear
ignore_length_regex = ^.*(https?://|0x)
[all.LineCounting]
enabled = False
bears = LineCountBear
max_lines_per_file = 1000
[all.DOCS]
bears = SpaceConsistencyBear, LineLengthBear
files = README.md
ignore_length_regex = ^.*(https?://|0x)
default_actions = SpaceConsistencyBear: ApplyPatchAction
[all.commit]
bears = GitCommitBear
shortlog_trailing_period = False
shortlog_regex = ([^:]*|[^:]+: [A-Z0-9*].*)