반응형
반응형

📝Prettier 설치

https://www.npmjs.com/package/prettier

 

prettier

Prettier is an opinionated code formatter. Latest version: 3.3.3, last published: 12 days ago. Start using prettier in your project by running `npm i prettier`. There are 17948 other projects in the npm registry using prettier.

www.npmjs.com

 

📝eslint 설치

https://www.npmjs.com/package/eslint

 

eslint

An AST-based pattern checker for JavaScript.. Latest version: 9.7.0, last published: 12 days ago. Start using eslint in your project by running `npm i eslint`. There are 24284 other projects in the npm registry using eslint.

www.npmjs.com

 

📝파일저장시 Prettier 적용

File - Settings - Prettier에서 Automatic Prettier configuration, Run on Save 체크

 

📝Auto Import

 

 

반응형
반응형

📝IntelliJ 컴파일 속도 증진

  1. Preference → Preferences Build, Execution, Deployment Build Tools Gradle 이동
  2. Build and run using - Gradle → IntelliJ IDEA 변경
  3. Run tests using - Gradle → IntelliJ IDEA 변경

 

현재는 이렇게 설정하지만 추후에는 달라질 수도 있을 것 같습니다

 

 

📝HotReload, HotSwap

Gradel 추가

implementation 'org.springframework.boot:spring-boot-devtools:2.6.3'

 

버전의 경우는 최신 버전으로 맞춰주시면 됩니다

 

IntelliJ 설정

  • Preference → Build, Execution, Deployment → Compiler → Build Project automatically 체크 후 apply

 

  • Settings → Advanced Settings → Allow-auto-make to start even if developed application is current running 체크 후 Apply

 

📝Prettier

Prettier의 경우 회사 자체적으로 있지 않는 이상 대기업인 Google에서 사용하는 Java Code Style을 따라가도록 하자

 

  1. https://github.com/google/styleguide (구글 스타일 가이드 저장소)
  2. intellij-java-google-style.xml 다운로드
  3. IntelliJ → settings → Code Style → Java 
  4. Scheme → Import Scheme → IntelliJ IDEA code style XML 클릭 → 다운받은 intellij-java-google-style.xml 넣기

 

 

save시 자동으로 코드 변환

  • Reformat Code
    • save시 자동으로 코드 형태 변경
  • Optimize Imports
    • 사용되지 않는 import 자동삭제

 

  • Settings → Appearance & Behavior → System Settings → Save files if the IDE is idle for 15 seconds (매 15초 자동 저장)

 

🔗 참고 및 출처

https://yeon-kr.tistory.com/197

반응형
반응형

IntelliJ및 WebStorm을 최신 버전으로 업데이틀 진행해주면 된다

 

🔗공식 답변 참고

https://intellij-support.jetbrains.com/hc/en-us/community/posts/19507482696082-Invalid-authentication-data-error

 

 

 

 

반응형