1

[dotfile removal]

This commit is contained in:
Evan Pratten 2021-08-09 00:00:00 -04:00
parent f8679bfe4b
commit 3a35a93701
5 changed files with 0 additions and 125 deletions

View File

@ -1,29 +0,0 @@
{
"name": "Jekyll web development",
"image": "mcr.microsoft.com/vscode/devcontainers/ruby:2.7",
// Set any default VSCode settings here
"settings": {
"terminal.integrated.shell.linux": "/bin/bash"
},
"forwardPorts": [
4000
],
// Any extensions you want can go here
"extensions": [
"rebornix.Ruby",
"yzhang.markdown-all-in-one",
"fcrespo82.markdown-table-formatter",
"sissel.shopify-liquid",
"wscats.qf",
"aessoft.aessoft-class-autocomplete",
"zignd.html-css-class-completion",
"ecmel.vscode-html-css",
"jeffersonqin.latex-snippets-jeff",
"goessner.mdmath",
"sibiraj-s.vscode-scss-formatter",
"streetsidesoftware.code-spell-checker",
"osteele.jekyll",
"GitHub.vscode-pull-request-github"
],
// "postCreateCommand": "bundle install",
}

5
.gitignore vendored
View File

@ -1,5 +0,0 @@
_site/*
.kotlin-for-frc/*
.sass-cache/*
.jekyll-cache/*
node_modules

View File

@ -1,11 +0,0 @@
{
"MD033": false,
"MD013": false,
"MD007": false,
"MD012": false,
"MD009": false,
"MD022": false,
"MD036": false,
"MD026": false,
"MD025": false
}

36
.vscode/settings.json vendored
View File

@ -1,36 +0,0 @@
{
"cSpell.words": [
"APRS",
"Baofeng",
"Bazel",
"Curseforge",
"DSLR",
"DTMF",
"Keybase",
"Litematica",
"Minecraft",
"Minecraft's",
"Optifine",
"Rclone",
"Rosenfeld",
"Socat",
"Soundpack",
"Starlark",
"buildscript",
"clicky",
"digipeater",
"keycaps",
"libc",
"manpages",
"microcontrollers",
"modpack",
"ortholinear",
"retrylife",
"shulker",
"singleplayer",
"thinkpad",
"videographers",
"voxel"
],
"compile-hero.disable-compile-files-on-did-save-code": true
}

44
.vscode/tasks.json vendored
View File

@ -1,44 +0,0 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Start local server",
"command": "bundle exec jekyll serve -H 0.0.0.0 --drafts -P 4000 --future -l",
"group": {
"kind": "test",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"type": "shell",
"label": "Build website",
"command": "bundle exec jekyll build",
"group": {
"kind": "build",
"isDefault": true
},
"presentation": {
"reveal": "always",
"panel": "new"
}
},
{
"type": "shell",
"label": "Update dependencies",
"command": "bundle install",
"group": "build",
"presentation": {
"reveal": "always",
"panel": "new"
},
"problemMatcher": []
}
]
}