Skip to content

Commit

Permalink
spotless and commit on deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
unbun committed Jan 6, 2025
1 parent 613896d commit a9264b0
Show file tree
Hide file tree
Showing 5 changed files with 279 additions and 160 deletions.
6 changes: 6 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"recommendations": [
"richardwillis.vscode-spotless-gradle"
]
}

21 changes: 16 additions & 5 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,19 @@
{
"name": "WPIlibUnitTests",
"workingDirectory": "${workspaceFolder}/build/jni/release",
"vmargs": [ "-Djava.library.path=${workspaceFolder}/build/jni/release" ],
"vmargs": [
"-Djava.library.path=${workspaceFolder}/build/jni/release"
],
"env": {
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release" ,
"LD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release",
"DYLD_LIBRARY_PATH": "${workspaceFolder}/build/jni/release"
}
},
null
],
"java.test.defaultConfig": "WPIlibUnitTests",
"spotlessGradle.format.enable": true,
"spotlessGradle.diagnostics.enable": false,
"java.import.gradle.annotationProcessing.enabled": false,
"java.completion.favoriteStaticMembers": [
"org.junit.Assert.*",
Expand Down Expand Up @@ -55,7 +60,13 @@
"javax.smartcardio.*",
"edu.wpi.first.math.proto.*",
"edu.wpi.first.math.**.proto.*",
"edu.wpi.first.math.**.struct.*",
"edu.wpi.first.math.**.struct.*"
],
"java.jdt.ls.vmargs": "-XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx2G -Xms100m -Xlog:disable"
}
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle",
"[json]": {
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
},
"[java]": {
"editor.defaultFormatter": "richardwillis.vscode-spotless-gradle"
}
}
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@
- [AdvantageKit v4.0.0-beta-1](https://docs.advantagekit.org/getting-started/template-projects/talonfx-swerve-template) ([project template](https://github.com/Mechanical-Advantage/AdvantageKit/tree/main/template_projects/sources/talonfx_swerve) & [vendordeps link](https://github.com/Mechanical-Advantage/AdvantageKit/releases/download/v4.0.0-beta-1/AdvantageKit.json))


- [PathPlannerLib](https://pathplanner.dev/pplib-getting-started.html#install-pathplannerlib)
- [PathPlannerLib](https://pathplanner.dev/pplib-getting-started.html#install-pathplannerlib)
- The only reason I included this was to explore Path Finding, and also because the AutoChooser on dashboard is from this

Loading

0 comments on commit a9264b0

Please sign in to comment.