2022-11-16 00:14:59 +01:00
|
|
|
# https://docs.codeclimate.com/docs/default-analysis-configuration
|
|
|
|
# https://docs.codeclimate.com/docs/advanced-configuration
|
|
|
|
|
|
|
|
version: '2' # required to adjust maintainability checks
|
|
|
|
checks:
|
|
|
|
complex-logic:
|
|
|
|
config:
|
|
|
|
threshold: 8
|
|
|
|
method-complexity:
|
|
|
|
config:
|
|
|
|
threshold: 8
|
|
|
|
method-lines:
|
|
|
|
config:
|
2023-01-29 06:05:18 +01:00
|
|
|
threshold: 50
|
2022-11-16 00:14:59 +01:00
|
|
|
|
|
|
|
exclude_patterns:
|
|
|
|
- 'config/'
|
|
|
|
- 'db/'
|
|
|
|
- 'dist/'
|
|
|
|
- 'features/'
|
|
|
|
- '**/node_modules/'
|
|
|
|
- 'script/'
|
|
|
|
- '**/spec/'
|
|
|
|
- '**/test/'
|
|
|
|
- '**/tests/'
|
|
|
|
- 'Tests/'
|
|
|
|
- '**/vendor/'
|
|
|
|
- '**/*_test.go'
|
|
|
|
- '**/*.d.ts'
|
|
|
|
- '**/@types/'
|
2024-02-01 19:59:51 +01:00
|
|
|
- '**/types/'
|
2022-11-16 00:14:59 +01:00
|
|
|
- '**/_types.*'
|
|
|
|
- '**/*.stories.*'
|
|
|
|
- '**/*.test.*'
|
|
|
|
- '.storybook/'
|
|
|
|
- 'tests/'
|
|
|
|
- 'coverage/'
|
|
|
|
- '.next/'
|
|
|
|
- '.swc/'
|