Skip to content

Latest commit

 

History

History
26 lines (23 loc) · 1.04 KB

File metadata and controls

26 lines (23 loc) · 1.04 KB

Styleguide

We are using a modified version of the Google Styleguide and the Checkstyle for Java extension to lint our Java files.

Usage

  1. Install the Checkstyle for Java extension and add styleguide-frc4607.xml to the project directory
  2. 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",
  1. (Optional) Add the Code Spell Checker extension.

About

This linting is based off of the Google Style Guide modified to our liking.