Skip to content

Commit 88f6f95

Browse files
committed
chore: exclude .claude directory from eslint
Prettier rules reject the claude config files (two-space JSON indentation, markdown prose width), failing the lint run. The directory is tooling configuration, not lintable source.
1 parent 335060b commit 88f6f95

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

eslint.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {buildConfig} from '@ver0/eslint-config';
44
/** @type {Linter.Config[]} */
55
const config = [
66
{
7-
ignores: ['.idea', 'node_modules', 'dist', 'coverage', 'CHANGELOG.md'],
7+
ignores: ['.claude', '.idea', 'node_modules', 'dist', 'coverage', 'CHANGELOG.md'],
88
},
99
...buildConfig({
1010
globals: 'browser',

0 commit comments

Comments
 (0)