| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- # Java
- *.class
- *.jar
- *.war
- *.ear
- *.zip
- *.tar.gz
- *.rar
- # Maven
- target/
- !target/classes/
- !target/test-classes/
- # IntelliJ IDEA
- .idea/
- *.iws
- *.iml
- *.ipr
- # Eclipse
- .classpath
- .project
- .settings/
- # NetBeans
- /nbproject/private/
- /nbbuild/
- /dist/
- /nbdist/
- /.nb-gradle/
- # VS Code
- .vscode/
- # Node.js
- node_modules/
- npm-debug.log*
- yarn-debug.log*
- yarn-error.log*
- # React
- /dist/
- /build/
- /.vite/
- # Logs
- logs/
- *.log
- # Runtime data
- pids/
- *.pid
- *.seed
- *.pid.lock
- # Coverage directory used by tools like istanbul
- coverage/
- # nyc test coverage
- .nyc_output
- # Dependency directories
- node_modules/
- jspm_packages/
- # Optional npm cache directory
- .npm
- # Optional eslint cache
- .eslintcache
- # Optional REPL history
- .node_repl_history
- # Output of 'npm pack'
- *.tgz
- # Yarn Integrity file
- .yarn-integrity
- # dotenv environment variables file
- .env
- .env.local
- .env.development.local
- .env.test.local
- .env.production.local
- # parcel-bundler cache (https://parceljs.org/)
- .cache
- .parcel-cache
- # next.js build output
- .next
- # nuxt.js build output
- .nuxt
- # vuepress build output
- .vuepress/dist
- # Serverless directories
- .serverless
- # FuseBox cache
- .fusebox/
- # DynamoDB Local files
- .dynamodb/
- # TernJS port file
- .tern-port
- # OS generated files
- .DS_Store
- .DS_Store?
- ._*
- .Spotlight-V100
- .Trashes
- ehthumbs.db
- Thumbs.db
- # Windows
- Thumbs.db
- ehthumbs.db
- Desktop.ini
- # Linux
- *~
- # Backup files
- *.bak
- *.backup
- *.tmp
- # IDE
- *.swp
- *.swo
- *~
- # Database
- *.db
- *.sqlite
- # Application specific
- /ruoyi-admin/target/
- /ruoyi-common/target/
- /ruoyi-framework/target/
- /ruoyi-generator/target/
- /ruoyi-quartz/target/
- /ruoyi-system/target/
- # React UI specific
- /new-react-admin-ui/node_modules/
- /new-react-admin-ui/dist/
- /new-react-admin-ui/.vite/
- # Package locks (optional - include if you want to commit them)
- # package-lock.json
- # yarn.lock
|