mirror of
https://github.com/oceanprotocol/market.git
synced 2024-12-02 05:57:29 +01:00
Matthias Kretschmann
1b612e4194
* package updates * bump Next.js * update for Next.js v13 new `Link` behavior * see https://nextjs.org/docs/upgrading#link-component * test tweaks, simplify getNetworkDisplayName() * modify codeclimate excludes * test tweaks and cleanup * more cleanup * switch to Node.js v18 * back to Node.js v16 * temporarily run CI against Node.js v16 & v18 * update codeowners * fixtures fixes for asset price * switch to Node.js v18 * package updates * remark updates, typescript and test fixes * fix * test run fixes * yet another lockfileVersion update * package updates * test run fixes
49 lines
923 B
YAML
49 lines
923 B
YAML
# 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: 55
|
|
identical-code:
|
|
config:
|
|
threshold: 55
|
|
|
|
exclude_patterns:
|
|
- 'config/'
|
|
- 'db/'
|
|
- 'dist/'
|
|
- 'features/'
|
|
- '**/node_modules/'
|
|
- 'script/'
|
|
- '**/spec/'
|
|
- '**/test/'
|
|
- '**/tests/'
|
|
- 'Tests/'
|
|
- '**/vendor/'
|
|
- '**/*_test.go'
|
|
- '**/*.d.ts'
|
|
- '**/@types/'
|
|
- '**/_types.*'
|
|
- '**/*.stories.*'
|
|
- '**/*.test.*'
|
|
- '.storybook/'
|
|
- '.jest/'
|