Skip to content

Instantly share code, notes, and snippets.

@takemikami
Last active August 27, 2018 07:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save takemikami/1dbffe1b97a7ac61ebde181052f1d27d to your computer and use it in GitHub Desktop.
Save takemikami/1dbffe1b97a7ac61ebde181052f1d27d to your computer and use it in GitHub Desktop.
.gitignore setting sample for JetBrains IntelliJ IDEA
# ignore all idea settings
.idea/*
*.iws
*.iml
*.ipr
# gradle project minimum
!.idea/gradle.xml
!.idea/misc.xml
# enable plugin dependencies
!.idea/externalDependencies.xml
# enable codestyle, with save actions
!.idea/codeStyles
!.idea/saveactions_settting.xml
# enable inspection rules
!.idea/inspectionProfiles
# enable annotation processor for lombok plugin
!.idea/compiler.xml
# enable checkstyle ide
!.idea/checkstyle-idea.xml
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="CheckStyle-IDEA">
<option name="configuration">
<map>
<entry key="active-configuration" value="PROJECT_RELATIVE:$PROJECT_DIR$/config/checkstyle/checkstyle.xml:Project Checks" />
<entry key="checkstyle-version" value="8.12" />
<entry key="copy-libs" value="false" />
<entry key="location-0" value="BUNDLED:(bundled):Sun Checks" />
<entry key="location-1" value="BUNDLED:(bundled):Google Checks" />
<entry key="location-2" value="PROJECT_RELATIVE:$PROJECT_DIR$/config/checkstyle/checkstyle.xml:Project Checks" />
<entry key="scan-before-checkin" value="false" />
<entry key="scanscope" value="JavaOnly" />
<entry key="suppress-errors" value="false" />
<entry key="thirdparty-classpath" value="$PROJECT_DIR$/buildSrc/out/production/classes/" />
</map>
</option>
</component>
</project>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment