mirror of
https://github.com/kremalicious/portfolio.git
synced 2024-12-22 09:13:19 +01:00
Matthias Kretschmann
1d74f420be
* app router migration * fixes * move to Next.js metadata handling * theme switch fixes * use some server actions * update tests * more unit tests * restore prettier-plugin-sort-imports functionality * cleanup * package updates * basic layout test * test tweak * readme updates
40 lines
721 B
YAML
40 lines
721 B
YAML
# 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:
|
|
threshold: 50
|
|
|
|
exclude_patterns:
|
|
- 'config/'
|
|
- 'db/'
|
|
- 'dist/'
|
|
- 'features/'
|
|
- '**/node_modules/'
|
|
- 'script/'
|
|
- '**/spec/'
|
|
- '**/test/'
|
|
- '**/tests/'
|
|
- 'Tests/'
|
|
- '**/vendor/'
|
|
- '**/*_test.go'
|
|
- '**/*.d.ts'
|
|
- '**/@types/'
|
|
- '**/types/'
|
|
- '**/_types.*'
|
|
- '**/*.stories.*'
|
|
- '**/*.test.*'
|
|
- '.storybook/'
|
|
- 'tests/'
|
|
- 'coverage/'
|
|
- '.next/'
|
|
- '.swc/'
|