-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy path.coafile
87 lines (76 loc) · 1.58 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[all]
ignore = .tox/**,
.git/**,
.gitignore,
.gitreview,
.gitmodules,
node_modules/**,
**.sw?,
**.orig
[all.Spacing]
bears = SpaceConsistencyBear
files = **
use_spaces = True
enforce_newline_at_EOF = False
default_actions = SpaceConsistencyBear: ApplyPatchAction
enabled = False
[all.LineLength]
bears = LineLengthBear
files = **
max_line_length = 100
enabled = False
[all.GitCommit]
bears = GitCommitBear
ignore_length_regex = Signed-off-by,
Also-by,
Co-authored-by,
http://,
https://
[all.Dockerfile]
bears = DockerfileLintBear
files = **Dockerfile
enabled = False
[all.MarkDown]
bears = MarkdownBear,SpaceConsistencyBear,WriteGoodLintBear
files = **.md, **.markdown
use_spaces = True
enabled = False
[all.reStructuredText]
bears = SpaceConsistencyBear,WriteGoodLintBear
files = **.rst
use_spaces = True
ignore = .git/**,
.tox/**,
docs/jjb/lf-ci-jobs.rst,
docs/jjb/lf-macros.rst,
docs/jjb/lf-maven-jobs.rst
enabled = False
[all.Python]
bears = PEP8Bear,
PyUnusedCodeBear,
PyImportSortBear
files = **.py
default_actions = PyUnusedCodeBear: ApplyPatchAction,
PyImportSortBear: ApplyPatchAction
enabled = False
[all.ShellCheck]
bears = ShellCheckBear,SpaceConsistencyBear
files = **.sh
shell = bash
indent_size = 4
use_spaces = True
enabled = False
[all.XML]
bears = XMLBear
files = **.xml
enabled = False
[all.YAML]
bears = YAMLLintBear
files = **.yaml, **.yml
document_start = True
yamllint_config = yamllint.conf
[all.JSON
bears = JSONFormatBear
files = **.json
default_actions = JSONFormatBear: ApplyPatchAction
enabled = False