Skip to content

Commit 7d34d82

Browse files
committed
chore: update .codacy.yml to clarify ESLint configuration and exclude test paths
1 parent dd8efc1 commit 7d34d82

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.codacy.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@ exclude_paths:
66
- 'examples/**'
77
- '**/*.d.ts'
88
- 'coverage/**'
9+
- 'eslint.config.js' # Exclude the flat config file that's causing issues
910

1011
engines:
1112
eslint:
12-
enabled: false # Disabled due to flat config compatibility issues with Codacy ESLint 9
13+
enabled: false # Explicitly disabled due to flat config compatibility issues
1314

14-
# Codacy will still analyze complexity and other metrics without ESLint
15+
# Use other engines for code quality analysis
1516
duplication:
1617
enabled: true
18+
exclude_paths:
19+
- 'test/**'
1720
metrics:
1821
enabled: true
22+
coverage:
23+
enabled: false # We handle coverage separately via CI

0 commit comments

Comments
 (0)