-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
.coafile
50 lines (39 loc) · 931 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[all]
files = **.(py|md|rst|yml), tox.ini, .coafile
ignore = (.tox|env|.env|venv)/**
indent_size = 4
use_spaces = True
max_line_length = 120
max_lines_per_file = 1000
file_naming_convention = snake
[all.filenames]
bears = FilenameBear
files = aiohttp_sentry/**.py
[all.lengths]
bears = LineCountBear, LineLengthBear
[all.spacing]
ignore = (.tox|env|.env|venv)/**, **.yml, tox.ini, .coafile
bears = SpaceConsistencyBear
[all.config-spacing]
files = **.yml, tox.ini, .coafile
bears = SpaceConsistencyBear
indent_size = 2
[all.python]
files = **.py
[all.python.semantic]
files = **.py
bears = RadonBear, PyUnusedCodeBear
language = python
[all.yaml]
files = **.(yml|yaml)
bears = YAMLLintBear
[all.restructuredtext]
files = **.rst
bears = reSTLintBear
[all.commit]
bears = GitCommitBear
shortlog_length = 72
[all.keywords]
bears = KeywordBear
keywords = TODO, FIXME, pdb.set_trace() # Ignore KeywordBear
language = python