This repository has been archived by the owner on Mar 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.codeclimate.yml
66 lines (66 loc) · 1.59 KB
/
.codeclimate.yml
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
version: "2"
checks:
method-complexity:
config:
threshold: 10
method-lines:
enabled: false
file-lines:
enabled: false
plugins:
# https://docs.codeclimate.com/docs/eslint
# ES Linting requires an .eslintrc file to tweak checks.
eslint:
enabled: false
markdownlint:
enabled: false
checks:
MD029:
enabled: false
# Disable inline html check because homepage.md needs it.
MD033:
enabled: false
# We shouldn't actually have css in this repo.
csslint:
enabled: false
# We don't lint our coffee. Eew.
coffeelint:
enabled: false
# SASS Lint requires a .sass-lint.yml file in the repo in order to tweak settings.
# Withouth the .sass-lint.yml file it will run with the defaults.
# Defaults file: https://github.com/sasstools/sass-lint/blob/master/lib/config/sass-lint.yml
sass-lint:
enabled: false
# SCSS Lint requires a .scss-lint.yml file in the repo in order to tweak settings.
# Withouth the .scss-lint.yml file it will run with the defaults.
# Defaults file: https://github.com/brigade/scss-lint/blob/master/config/default.yml
scss-lint:
enabled: false
phpcodesniffer:
enabled: false
phpmd:
enabled: false
# https://docs.codeclimate.com/docs/phan
phan:
enabled: false
# https://docs.codeclimate.com/docs/duplication
duplication:
enabled: false
fixme:
enabled: true
config:
strings:
- FIXME
- BUG
- TODO
- todo
# exclude these files/paths
exclude_patterns:
- "test"
- "tests"
- "vendor"
- "vendors"
- "node_modules"
- "package.json"
- "docs"
- "dist"