-
Notifications
You must be signed in to change notification settings - Fork 45
/
.coafile
60 lines (50 loc) · 1.28 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
56
57
58
59
60
[all]
files = **.js, **.json, **.css, **.yml, **.html, .eslintrc
ignore = node_modules/**, out/**, tests/__data__/**, package-lock.json
max_line_length = 80
use_spaces = True
[all.whitespace]
bears = SpaceConsistencyBear
default_actions = *: ApplyPatchAction
[all.linelength]
ignore += **.html, static/i18n/**.json, package.json
bears = LineLengthBear
[all.links]
bears = InvalidLinkBear
link_ignore_regex = (github\.com|\{|\$)
link_ignore_list = https://www.google-melange.com/**
[js]
files = lib/**/*.js, src/js/**/*.js
bears = ESLintBear
eslint_config = .eslintrc
default_actions = *: ApplyPatchAction
[css]
files = src/styles/*.css
bears = StyleLintBear
[html]
files = templates/*.html
bears = HTMLLintBear
htmllint_ignore = optional
[all.json-i18n]
files = static/i18n/**
bears = JSONFormatBear
indent_size = 4
escape_unicode = False
default_actions = *: ApplyPatchAction
[all.json]
files = *.json
ignore += static/i18n/**
bears = JSONFormatBear
indent_size = 2
default_actions = *: ApplyPatchAction
[yaml]
files = *.yml, .eslintrc
bears = YAMLLintBear
[commit]
bears = GitCommitBear
shortlog_trailing_period = False
shortlog_regex = ([^:]*|[^:]+: [A-Z0-9*].*)
body_close_issue = True
body_close_issue_full_url = True
body_close_issue_on_last_line = True
body_enforce_issue_reference = False