forked from JeffDeCola/my-cheat-sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codeclimate.yml
40 lines (36 loc) · 1.23 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
# .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
# ... IGNORE INLINE HTML ...
checks:
MD033:
enabled: false
shellcheck:
enabled: true
# exclude_patterns: Exclude files and/or directories from analysis
# - <pattern>
# - <pattern>
exclude_patterns:
- "docs/"
- "other/mathematics/"
- "software/development/languages/latex-cheat-sheet"
- "software/development/languages/go-cheat-sheet/src/"
- "software/development/languages/go-cheat-sheet/methods.md"
- "software/development/languages/go-cheat-sheet/functions.md"
- "other/science/physical-science/physics-cheat-sheet/*"
- "other/single-board-computers/raspberry-pi/specifications-cheat-sheet/README.md"