We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8efc1 commit 7d34d82Copy full SHA for 7d34d82
.codacy.yml
@@ -6,13 +6,18 @@ exclude_paths:
6
- 'examples/**'
7
- '**/*.d.ts'
8
- 'coverage/**'
9
+ - 'eslint.config.js' # Exclude the flat config file that's causing issues
10
11
engines:
12
eslint:
- enabled: false # Disabled due to flat config compatibility issues with Codacy ESLint 9
13
+ enabled: false # Explicitly disabled due to flat config compatibility issues
14
- # Codacy will still analyze complexity and other metrics without ESLint
15
+ # Use other engines for code quality analysis
16
duplication:
17
enabled: true
18
+ exclude_paths:
19
+ - 'test/**'
20
metrics:
21
22
+ coverage:
23
+ enabled: false # We handle coverage separately via CI
0 commit comments