-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update devcontainer.json to new format (#978)
* fix: update devcontainer.json to new format chore: update checkstyle version style: fix xml and json tab settings * chore: checkstyle, match default import order
- Loading branch information
1 parent
58fc099
commit a3bc78b
Showing
3 changed files
with
58 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
{ | ||
"java.configuration.updateBuildConfiguration": "interactive", | ||
"[java]": { | ||
"editor.defaultFormatter": "redhat.java", | ||
"editor.formatOnSave": true, | ||
}, | ||
"java.format.settings.url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml", | ||
"java.saveActions.organizeImports": true, | ||
"java.configuration.updateBuildConfiguration": "interactive", | ||
"[java]": { | ||
"editor.defaultFormatter": "redhat.java", | ||
"editor.formatOnSave": true, | ||
"editor.tabSize": 2, | ||
"editor.insertSpaces": true, | ||
"editor.detectIndentation": false, | ||
"java.checkstyle.version": "10.9.3", | ||
"java.checkstyle.configuration": "${workspaceFolder}/checkstyle_neqsim.xml", | ||
"java.debug.settings.hotCodeReplace": "never" | ||
} | ||
"editor.detectIndentation": false | ||
}, | ||
"java.format.settings.url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml", | ||
"java.saveActions.organizeImports": true, | ||
"java.checkstyle.version": "10.15.0", | ||
"java.checkstyle.configuration": "${workspaceFolder}/checkstyle_neqsim.xml", | ||
"java.debug.settings.hotCodeReplace": "never", | ||
"[xml]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": false | ||
}, | ||
"[json]": { | ||
"editor.tabSize": 4, | ||
"editor.insertSpaces": true | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters