Project Structure -> Project SDK
echo $JAVA_HOME
するとPATHが通ってることは確認できるがなぜかIDEAは認識しないので手動で設定
Appearance & Behavior -> System Settings
Reopen last project on startup : unchecked
Editor -> General
Ensure line feed at file end on Save : checked
Editor -> General -> Appearance
Show whitespaces : checked
Editor -> General -> Appearance
Show method separators : checked
Editor -> General -> Appearance
Show parameter name hints : unchecked
Editor -> General -> Editor Tabs
Tab AppearanceのMark modified tabs with asterisk : checked
Editor -> Code Style -> Java -> Imports
Class count to use import with * : 999
Names count to use static import with * : 999
Editor -> inspections -> Serialization issues
Serializable class without 'serialVersionUID' : checked
これで警告が表示されるようになるのでAlt+Enter
からAdd 'serialVersionUID' field
Editor -> inspections
あたりを覗くと大量に見つかる
Other Settings -> CodeGlance
で設定をいじれる
プレビューあり
コーディングスタイルからの逸脱を中心に検査
Other Settings -> Checkstyle
で設定をいじれる
Configuration File
で /sun_checks.xml
にチェックすればとりあえず動く
既知のバグパターンにもとづいて潜在的なバグを検査
Other Settings -> FindBugs-IDEA
で設定をいじれる
Analysis effort : Maximal
Minimum confidence : Low
メニューバーの
Tools -> Create Command-line Launcher
# Gradle
.gradle
build
# IDEA
.idea
https://plugins.jetbrains.com/plugin/7642-save-actions
Show quick documentation on mouse move