1
0
mirror of https://github.com/kremalicious/portfolio.git synced 2024-06-15 17:03:26 +02:00
portfolio/.codeclimate.yml
Matthias Kretschmann 1d74f420be
move to app router (#1284)
* 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
2024-02-01 18:59:51 +00:00

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/'