We are using a modified version of the Google Styleguide and the Checkstyle for Java extension to lint our Java files.
- Install the Checkstyle for Java extension and add styleguide-frc4607.xml to the project directory
- Add/modify the following in .vscode/settings.json
"[java]": {
"editor.tabSize": 4,
"editor.detectIndentation": false,
"editor.insertSpaces": true
},
"editor.formatOnSave": false,
"java.checkstyle.configuration": "${workspaceFolder}/styleguide-frc4607.xml",
"java.checkstyle.version": "10.3",
- (Optional) Add the Code Spell Checker extension.
This linting is based off of the Google Style Guide modified to our liking.