mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
add custom codeclimate config (#1292)
* add custom codeclimate config * add exclude_patterns * tweaks * tweaks * remove checks without overwrite * tweak similar-code & identical-code mass threshold * threshold tinkering
This commit is contained in:
parent
29e6636d71
commit
065f5bc711
44
.codeclimate.yml
Normal file
44
.codeclimate.yml
Normal file
@ -0,0 +1,44 @@
|
||||
# https://docs.codeclimate.com/docs/default-analysis-configuration
|
||||
# https://docs.codeclimate.com/docs/advanced-configuration
|
||||
|
||||
version: '2'
|
||||
checks:
|
||||
argument-count:
|
||||
config:
|
||||
threshold: 6
|
||||
complex-logic:
|
||||
config:
|
||||
threshold: 10
|
||||
file-lines:
|
||||
config:
|
||||
threshold: 500
|
||||
method-complexity:
|
||||
config:
|
||||
threshold: 10
|
||||
method-lines:
|
||||
config:
|
||||
threshold: 250
|
||||
# https://docs.codeclimate.com/docs/default-analysis-configuration#per-language-mass-threshold-defaults
|
||||
similar-code:
|
||||
config:
|
||||
threshold: 50
|
||||
identical-code:
|
||||
config:
|
||||
threshold: 50
|
||||
|
||||
exclude_patterns:
|
||||
- 'config/'
|
||||
- 'db/'
|
||||
- 'dist/'
|
||||
- 'features/'
|
||||
- '**/node_modules/'
|
||||
- 'script/'
|
||||
- '**/spec/'
|
||||
- '**/test/'
|
||||
- '**/tests/'
|
||||
- 'Tests/'
|
||||
- '**/vendor/'
|
||||
- '**/*_test.go'
|
||||
- '**/*.d.ts'
|
||||
- '**/*.stories.tsx'
|
||||
- '**/*.test.tsx'
|
Loading…
Reference in New Issue
Block a user