status-go/.codeclimate.yml
Andrea Franz dcb0fa5262
add multi-account support (#1500)
* add multiaccount support

add multi account ImportPrivateKey and StoreAccount

test derivation from normal keys

* add multiaccount to mobile pkg

* use multiaccount params structs from the mobile pkg

* move multiaccount tests together with the other lib tests

* fix codeclimate warning and temporarily increase methods threshold

* split library_test_utils.go to avoid linter warnings
2019-07-24 20:59:15 +02:00

45 lines
1.4 KiB
YAML

version: "2" # required to adjust maintainability checks
checks:
# Methods or functions defined with a high number of arguments
argument-count:
config:
threshold: 6
# Boolean logic that may be hard to understand
complex-logic:
config:
threshold: 4
# Excessive lines of code within a single file
file-lines:
config:
threshold: 900
# Functions or methods that may be hard to understand. This is disabled as it doesn't appear to be a reliable metric.
method-complexity:
enabled: false
# Classes defined with a high number of functions or methods.
method-count:
config:
threshold: 21
# Excessive lines of code within a single function or method
method-lines:
config:
threshold: 500
# Deeply nested control structures like if or case
nested-control-flow:
config:
threshold: 4
# Functions or methods with a high number of return statements. This is disabled because Go encourages early returns.
return-statements:
enabled: false
# Duplicate code which is not identical but shares the same structure (e.g. variable names may differ). This is disabled due to too many false trips.
similar-code:
enabled: false
# Code that is identical in structure
identical-code:
config:
threshold: # language-specific defaults. an override will affect all languages.
exclude_patterns:
- vendor/
- static/
- t/
- mailserver/migrations