-
Notifications
You must be signed in to change notification settings - Fork 1
/
.coafile
78 lines (67 loc) · 1.81 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
[all]
ignore = **/fontawesome*
max_lines_per_file = 1000
use_spaces = True
file_naming_convention = snake
[all.generic]
bears = InvalidLinkBear, FilenameBear
files = **.js, **.html, **.css, **.scss, **.svg, **.md
[all.markdown]
bears += LineCountBear, MarkdownBear, LineLengthBear, SpaceConsistencyBear
files = **.md
language = markdown
max_line_length = 600
[all.yaml]
bears += InvalidLinkBear, FilenameBear, LineCountBear, YAMLLintBear, SpaceConsistencyBear
files = **.yml
language = yaml
max_line_length = 300
link_ignore_list =
https://lufevida.github.io
[all.html]
bears += LineCountBear, LineLengthBear, HTMLLintBear, SpaceConsistencyBear
files = **.html
ignore = elements.html
language = html
use_spaces = False
max_line_length = 200
htmllint_ignore = tabs, indentation, void_element, optional_tag, entities, protocol
[all.scss]
bears += LineCountBear, LineLengthBear, SpaceConsistencyBear
files = **.scss
ignore = assets/sass/libs/_skel.scss
language = scss
use_spaces = False
max_line_length = 200
[all.xml]
bears += LineCountBear, LineLengthBear, XMLBear, SpaceConsistencyBear
files = **.svg
language = xml
use_spaces = False
max_line_length = 200
[all.javascript]
bears += LineCountBear, LineLengthBear
ignore = **.min.js, assets/js/ie/html5shiv.js
language = js
use_spaces = False
max_line_length = 700
[all.javascript.eslint]
bears = ESLintBear
files = **.js
eslint_config = .eslintrc.yml
[all.javascript.other]
bears += SpaceConsistencyBear
files = **.js
ignore += assets/js/util.js
[all.javascript.util]
# There is one line in util.js that is nicely formatted
# but SpaceConsistencyBear wants to format incorrectly.
files = assets/js/util.js
[all.css]
bears += LineCountBear, LineLengthBear, SpaceConsistencyBear
files = **.css
ignore = **.min.css
language = css
use_spaces = False
max_line_length = 500
max_lines_per_file = 4000