-
Notifications
You must be signed in to change notification settings - Fork 8
/
.codeclimate.yml
37 lines (33 loc) · 1009 Bytes
/
.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
# .codeclimate.yml
version: "2"
# prepare: Actions to perform before analysis begins
# fetch: Remote files to fetch (files are placed relative to the repo's root directory)
# url: url to fetch
# path: destination relative to repo's root directory
# checks: Configuration of maintainability checks
# <name>
# enabled: true|false
# config: check configuration
# plugins: Enable optional engines to run in addition to your analysis
# <name>
# enabled: true|false
# channel: alternate channel to use (stable is default)
# config: plugin configuration
plugins:
markdownlint:
enabled: true
checks:
# ... IGNORE INLINE HTML ...
MD033:
enabled: false
# ... IGNORE LINE LENGTH ...
MD013:
enabled: false
shellcheck:
enabled: true
# exclude_patterns: Exclude files and/or directories from analysis
# - <pattern>
# - <pattern>
exclude_patterns:
- "docs/"
- "/systems/microprocessors/programable_8_bit_microprocessor/README.md"