Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
164 lines (147 loc) · 3.22 KB

File metadata and controls

164 lines (147 loc) · 3.22 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
# Enable analysis [engines][1].
#
# [1]: https://docs.codeclimate.com/docs/list-of-engines
engines:
# Analyze bash files using [shellcheck][1].
#
# [1]: https://github.com/koalaman/shellcheck
shellcheck:
enabled: true
# Analyze JavaScript files using [ESLint][1].
#
# [1]:https://docs.codeclimate.com/docs/eslint
eslint:
enabled: true
# Audit Node.js dependencies for security vulnerabilities using [Node Security][1].
#
# [1]: https://github.com/nodesecurity/nsp
nodesecurity:
enabled: true
# Analyze CSS files using [CSSLint][1].
#
# [1]: https://docs.codeclimate.com/docs/csslint
csslint:
enabled: true
# Analyze Sass files using [SCSS lint][1].
#
# [1]: https://github.com/ivantsepp/codeclimate-scss-lint
scss-lint:
enabled: false
# Analyze Python files using [Pep8][1].
#
# [1]: https://www.python.org/dev/peps/pep-0008/
pep8:
enabled: true
# Analyze Markdown files using [markdownlint][1].
#
# [1]: https://github.com/mivok/markdownlint
markdownlint:
enabled: false
# Analyze Golang files using [golint][1].
#
# [1]: https://github.com/golang/lint
golint:
enabled: true
config:
min_confidence: 0.8
# Audit Golang files for suspicious constructs and potential bugs using [govet][1].
#
# [1]: https://golang.org/cmd/vet
govet:
enabled: true
# Ensure Golang files adhere to the official style using [gofmt][1].
#
# [1]: https://golang.org/cmd/gofmt
gofmt:
enabled: true
# Analyze source files for code similarity using [duplication][1].
#
# [1]: https://docs.codeclimate.com/v1.0/docs/duplication
duplication:
enabled: true
config:
languages:
javascript:
mass_threshold: 40
python:
mass_threshold: 32
# Analyze source files for annotations using [FIXME][1].
#
# [1]: https://docs.codeclimate.com/v1.0/docs/fixme
fixme:
enabled: false
config:
strings:
- TODO
- FIXME
- WARNING
- HACK
- NOTE
- OPTIMIZE
- BUG
- XXX
# Disable all other engines:
brakeman:
enabled: false
bundler-audit:
enabled: false
coffeelint:
enabled: false
phpcodesniffer:
enabled: false
phpmd:
enabled: false
radon:
enabled: false
rubocop:
enabled: false
watson:
enabled: false
foodcritic:
enabled: false
haxe-checkstyle:
enabled: false
hlint:
enabled: false
phan:
enabled: false
reek:
enabled: false
rubymotion:
enabled: false
tailor:
enabled: false
vint:
enabled: false
gnu-complexity:
enabled: false
# Specify which files/folders should have [ratings][1].
#
# [1]: https://docs.codeclimate.com/docs/ratings
ratings:
paths:
- "lib/**/*"
- "test/**/*"
- "examples/**/*"
- "benchmark/**/*"
- "bin/**/*"
- "tools/**/*"
- "scripts/**/*"
- "**.sh"
- "**.js"
- "**.css"
# - "**.scss"
# - "**.md"
- "**.py"
- "**.go"
# Specify which files/folders should be [ignored][1] when performing analyses.
#
# [1]: https://docs.codeclimate.com/docs/excluding-files-and-folders
exclude_paths:
- "node_modules/"
- "reports/"
- "build/"
- "**/build/"
- "dist/"
- "tmp/"
- "**/tmp/"
Morty Proxy This is a proxified and sanitized view of the page, visit original site.