-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.codeclimate.yml
55 lines (55 loc) · 1.04 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
version: "2"
checks:
method-lines:
enabled: false
plugins:
duplication:
enabled: true
config:
languages:
- ruby
- javascript
brakeman:
enabled: true
eslint:
enabled: true
config:
config: .eslintrc.json
channel: "eslint-6"
extensions:
- .ts
- .tsx
exclude_patterns:
# Excluding until it's determined how this will be minified and served.
- "lib/assets/welcome_bar/welcome_bar.js"
rubocop:
enabled: true
channel: rubocop-0-83
exclude_patterns:
- "**.gif"
- "**.jpg"
- "**.md"
- "**.png"
- "**.ru"
- "**/__tests__/"
- "**/__mocks__/"
- "**/*.d.ts"
- "**/coverage/"
- "**/node_modules/"
- "**/spec/"
- ".browserslintrc"
- ".rubocop.yml"
- ".rubocop_todo.yml"
- "app/assets/config/manifest.js"
- "app/assets/javascripts/application.js"
- "babel.config.js"
- "bin/"
- "config/"
- "coverage/"
- "db/"
- "docker-compose.yml"
- "Dockerfile"
- "postcss.config.js"
- "public/"
- "public/packs/"
- "tsconfig.json"