forked from USStateDept/State-TalentMAP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.codeclimate.yml
36 lines (36 loc) · 902 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
version: "2"
checks:
file-lines:
enabled: false # default is 250, which is low when we have logic and ui in some files
method-lines:
enabled: false # default is 25 which is low for render() methods
plugins:
duplication:
enabled: false
config:
languages:
javascript:
# eslint:
# enabled: true
# channel: "eslint-6"
# checks:
# import/no-unresolved:
# enabled: false
# import/extensions:
# enabled: false
# no-loops/no-loops:
# enabled: false
# config:
# extensions:
# - .js
# - .jsx
# scss-lint:
# enabled: true
exclude_patterns:
- node_modules/
- build/ # build artifacts
- config/ # build configuration - config/ # build configuration
- coverage/ # test coverage
- scripts/ # build & utility scripts
- src/__mocks__/ # test objects
- src/Constants/PropTypes.js # shape definitions