mirror of https://gitee.com/makejava/EasyCode.git
修改忽略规则,加入部分IDEA自带配置文件
This commit is contained in:
parent
120af050d2
commit
4c7f45fc89
|
@ -1,11 +1,32 @@
|
|||
### IntelliJ IDEA ###
|
||||
|
||||
!*.iml
|
||||
!.idea/*.iml
|
||||
|
||||
|
||||
.idea
|
||||
*.iws
|
||||
*.ipr
|
||||
## 忽略其他配置文件,防止冲突
|
||||
.idea/*
|
||||
|
||||
##忽略输出文件夹
|
||||
out/
|
||||
target/
|
||||
|
||||
|
||||
## IDEA主要文件,用于保证项目结构正常
|
||||
!*.iml
|
||||
|
||||
## IDEA 代码样式文件,保证代码样式的一致性
|
||||
!.idea/codeStyles
|
||||
!.idea/codeStyles/codeStyleConfig.xml
|
||||
|
||||
## IDEA 编译文件
|
||||
!.idea/compiler.xml
|
||||
|
||||
## IDEA 项目编码文件
|
||||
!.idea/encodings.xml
|
||||
|
||||
## IDEA JDK版本文件
|
||||
!.idea/misc.xml
|
||||
|
||||
## IDEA modules 配置
|
||||
!.idea/modules.xml
|
||||
|
||||
## IDEA 版本控制配置
|
||||
!.idea/vcs.xml
|
||||
|
||||
|
|
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<module type="PLUGIN_MODULE" version="4">
|
||||
<component name="DevKit.ModuleBuildProperties" url="file://$MODULE_DIR$/resources/META-INF/plugin.xml" />
|
||||
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
||||
<exclude-output />
|
||||
<content url="file://$MODULE_DIR$">
|
||||
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
|
||||
<sourceFolder url="file://$MODULE_DIR$/resources" type="java-resource" />
|
||||
</content>
|
||||
<orderEntry type="jdk" jdkName="IntelliJ IDEA IU-173.4127.27" jdkType="IDEA JDK" />
|
||||
<orderEntry type="sourceFolder" forTests="false" />
|
||||
</component>
|
||||
</module>
|
|
@ -0,0 +1,5 @@
|
|||
<component name="ProjectCodeStyleConfiguration">
|
||||
<state>
|
||||
<option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
|
||||
</state>
|
||||
</component>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="CompilerConfiguration">
|
||||
<annotationProcessing>
|
||||
<profile default="true" name="Default" enabled="true" />
|
||||
</annotationProcessing>
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="Encoding" native2AsciiForPropertiesFiles="true" defaultCharsetForPropertiesFiles="UTF-8" />
|
||||
</project>
|
|
@ -0,0 +1,4 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK" />
|
||||
</project>
|
|
@ -0,0 +1,8 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="ProjectModuleManager">
|
||||
<modules>
|
||||
<module fileurl="file://$PROJECT_DIR$/.idea/EasyCode.iml" filepath="$PROJECT_DIR$/.idea/EasyCode.iml" />
|
||||
</modules>
|
||||
</component>
|
||||
</project>
|
|
@ -0,0 +1,6 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<project version="4">
|
||||
<component name="VcsDirectoryMappings">
|
||||
<mapping directory="" vcs="Git" />
|
||||
</component>
|
||||
</project>
|
Loading…
Reference in New Issue