Skip to content

Commit 7f86dfc

Browse files
committed
docs: add CI badge and eslintignore
- Added CI status badge to README.md - Created .eslintignore to exclude build artifacts and dependencies - Badge links to GitHub Actions workflow page
1 parent 20a486b commit 7f86dfc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

frontend/.eslintignore

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Dependencies
2+
node_modules/
3+
dist/
4+
build/
5+
coverage/
6+
7+
# Build outputs
8+
*.js
9+
*.mjs
10+
!eslint.config.js
11+
!vite.config.ts
12+
13+
# Test artifacts
14+
*.log
15+
.vitest/
16+
17+
# IDE
18+
.vscode/
19+
.idea/
20+
21+
# System files
22+
.DS_Store
23+
Thumbs.db
24+
25+
# Workers (compiled)
26+
classifyWorker-*.js

0 commit comments

Comments
 (0)