64 lines
880 B
Plaintext
64 lines
880 B
Plaintext
### Example user template template
|
|
### Example user template
|
|
|
|
# IntelliJ project files
|
|
.idea
|
|
target
|
|
*.gz
|
|
*.log
|
|
.log
|
|
*.logs
|
|
.logs
|
|
*.zip
|
|
*.iml
|
|
out
|
|
gen
|
|
*/.vscode
|
|
.vscode
|
|
#忽略所有.svn目录
|
|
.svn/
|
|
#忽略所有target目录
|
|
target/
|
|
#忽略所有.idea目录及其内容
|
|
.idea/
|
|
.idea/*
|
|
#忽略所有.ipr文件
|
|
*.ipr
|
|
#忽略所有.iws文件
|
|
*.iws
|
|
#忽略所有.gradle目录
|
|
.gradle/
|
|
#忽略所有.settings目录
|
|
.settings/
|
|
#忽略所有.classpath文件
|
|
.classpath
|
|
#忽略所有.project文件
|
|
.project
|
|
#忽略所有.pydevproject文件
|
|
.pydevproject
|
|
#忽略所有.DS_Store文件
|
|
.DS_Store
|
|
#忽略所有.class文件
|
|
*.class
|
|
#忽略所有.log文件
|
|
*.log
|
|
#忽略所有.tmp文件
|
|
*.tmp
|
|
#忽略所有.swp文件
|
|
*.swp
|
|
node_modules/
|
|
/dist/
|
|
npm-debug.log*
|
|
yarn-debug.log*
|
|
yarn-error.log*
|
|
.git
|
|
|
|
# Editor directories and files
|
|
*.suo
|
|
*.ntvs*
|
|
*.njsproj
|
|
*.sln
|
|
dist/
|
|
npm-debug.log
|
|
.vscode/
|
|
README.md |