Compare commits

..

4 Commits

Author SHA1 Message Date
Jordan Atwood 16f5173b88
Add GitLens to standard vscode extensions 1 year ago
Jordan Atwood 6cf108bc21
Add more branches to include in RuneLite custom build 1 year ago
Jordan Atwood 61cac82fbd
Reduce RuneLite rebuild script max age to 18 hours 1 year ago
Jordan Atwood 67a9d7f9f7
Add .editorconfig and jsonc schema for vscode settings.json 1 year ago
  1. 3
      .editorconfig
  2. 4
      src/.bin/open-runelite.sh
  3. 1
      vscode/extensions
  4. 13
      vscode/settings.json

@ -0,0 +1,3 @@
[vscode/*]
indent_size = 2
indent_style = space

@ -17,8 +17,10 @@ BRANCHES_TO_MERGE=(
multi-step-cryptic-spade
quest-speedrunning-widget-overlays
fixed-thrall-timer
fix-grand-exchange-offer-slot-wrapping
gwd-altar-timer
)
MAX_AGE_BEFORE_REBUILD="$(( 24 * 60 * 60 ))" # 1 day
MAX_AGE_BEFORE_REBUILD="$(( 18 * 60 * 60 ))" # 18 hours
UPSTREAM_REMOTE='upstream'
UPSTREAM_BRANCH='master'
for branch in "${BRANCHES_TO_MERGE[@]}"; do

@ -1,2 +1,3 @@
eamodio.gitlens
EditorConfig.EditorConfig
timonwong.shellcheck

@ -1,5 +1,13 @@
{
// custom settings
"json.schemas": [{
"fileMatch": [
"/vscode/settings.json",
],
"schema": {
"allowTrailingCommas": true,
},
}],
"terminal.integrated.defaultProfile.linux": "bash",
"terminal.integrated.profiles.linux": {
"bash": {
@ -20,6 +28,11 @@
"explorer.confirmDragAndDrop": false,
"files.autoSave": "afterDelay",
"files.enableTrash": false,
"gitlens.showWelcomeOnInstall": false,
"gitlens.defaultGravatarsStyle": "identicon",
"gitlens.codeLens.scopes": [
"document"
],
"html.autoCreateQuotes": false,
"python.analysis.typeCheckingMode": "strict",
"workbench.startupEditor": "none",

Loading…
Cancel
Save