forked from Antergos/antbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coafile
34 lines (28 loc) · 849 Bytes
/
.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
[Default]
bears = GNUIndentBear,LineLengthBear,SpaceConsistencyBear
max_line_length = 99
use_spaces = True
[Python]
bears=PEP8Bear,PyCommentedCodeBear,PyImportSortBear,PyUnusedCodeBear
files = **/*.py
default_actions = PEP8Bear: ApplyPatchAction,
PyImportSortBear: ApplyPatchAction,
PyCommentedCodeBear: ApplyPatchAction,
PyUnusedCodeBear: ApplyPatchAction
[pylint]
enabled = nope # Disabled as it yields nondeterministic results
bears = PyLintBear
pylint_disable = C0411 # Import order is done by the PyImportSortBear
[Docker]
bears= DockerfileLintBear
files= **/Dockerfile
[Markdown]
bears = AlexBear,MarkdownBear
files = **/*.md
[JSON]
bears = JSONFormatBear
files = **/*.json
[Commits]
bears = GitCommitBear
# Trailing periods in shortlogs are evil!
shortlog_trailing_period = False