forked from coala/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.coafile
52 lines (43 loc) · 1.14 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
[all]
files = **.py, **.js, **.sh
ignore = .git/**, **/__pycache__/**, gci/client.py, */migrations/**, private/*
max_line_length = 80
use_spaces = True
preferred_quotation = '
[all.whitespace]
use_spaces = True
bears = SpaceConsistencyBear
default_actions = *: ApplyPatchAction
[all.python]
files = **.py
language = Python
[all.python.default]
ignore += */models.py
bears = PEP8Bear, PycodestylBear, PyFlakesBear, QuotesBear
default_actions = *: ApplyPatchAction
[all.linelength]
ignore += */models.py
bears = LineLengthBear
[all.python.models]
files = */models.py
bears = LineLengthBear, PycodestylBear, PyFlakesBear, QuotesBear
max_line_length = 120
[all.links]
bears = InvalidLinkBear
[javascript]
files = static/**/*.js
bears = JSHintBear
allow_unused_variables = True
javascript_strictness = False
[bash]
files = *.sh
bears = ShellCheckBear
shell = bash
[all.generalization]
# Do not allow the word "coala" to ensure the repository can be generalized out
# for use by other organizations.
files = **
ignore += org_name.txt, .coafile, requirements.txt, .travis.yml, LICENSE, public/**, _site/**
bears = KeywordBear
language = python 3
keywords = coala