mirror of
https://github.com/lobehub/lobe-chat.git
synced 2025-12-20 01:12:52 +08:00
- Add tmp, temp, .temp directories to .eslintignore - Add .local, .cache, .claude, .serena directories to .eslintignore - Create .stylelintignore with same ignore patterns - Update tsconfig.json to exclude temporary directories from type checking - Prevents linting and type checking of temporary and AI tool directories
49 lines
476 B
Plaintext
49 lines
476 B
Plaintext
# Eslintignore for LobeHub
|
|
################################################################
|
|
|
|
# dependencies
|
|
node_modules
|
|
|
|
# ci
|
|
coverage
|
|
.coverage
|
|
|
|
# test
|
|
jest*
|
|
*.test.ts
|
|
*.test.tsx
|
|
|
|
# umi
|
|
.umi
|
|
.umi-production
|
|
.umi-test
|
|
.dumi/tmp*
|
|
!.dumirc.ts
|
|
|
|
# production
|
|
dist
|
|
es
|
|
lib
|
|
logs
|
|
|
|
# misc
|
|
# add other ignore file below
|
|
.next
|
|
|
|
# temporary directories
|
|
tmp
|
|
temp
|
|
.temp
|
|
.local
|
|
docs/.local
|
|
|
|
# cache directories
|
|
.cache
|
|
|
|
# AI coding tools directories
|
|
.claude
|
|
.serena
|
|
|
|
# MCP tools
|
|
/.serena/**
|