forked from coala/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.coafile
43 lines (38 loc) · 1.25 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
[global]
bears = coalaBear, InvalidLinkBear
files = **.yml, **.html, **.md, **.js, **.css, **.json
ignore = vendor/**, resources/vendors/**, _site/**, _book/**
# These sites all reject spiders
link_ignore_list =
https://twitter.com/**,
https://gitlab.com/**,
https://withgoogle.com/**,
https://avatars.githubusercontent.com/**,
https://github.com/**
# clbin.com doesnt work in link_ignore_list
# See https://github.com/coala/coala-bears/issues/2126
link_ignore_regex = clbin.com
[linecount]
files = **.yml, **.html, **.md, **.js
bears = LineCountBear
ignore = vendor/**, resources/vendors/**, data/projects.js, _site/**
max_lines_per_file = 500
[filenames]
bears = FilenameBear
files = **.yml, **.html, **.md, **.js, **.css
ignore = vendor/**, resources/vendors/**, _projects/integrate-pyflakes-AST.md, data/locale/en/projects/**, _site/**
file_naming_convention = snake
[spacing]
bears = SpaceConsistencyBear
files = **.html, **.css, **.js, **.json
ignore = vendor/**, resources/vendors/**, _site/**
use_spaces = True
[html]
bears = HTMLLintBear
files = **.html
htmllint_ignore = optional_tag, protocol, indentation, concerns_separation, capitalization
ignore = vendor/**, resources/vendors/**, _site/**
[yml]
bears = YAMLLintBear
files = **.yml
ignore = vendor/**