-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
71 changed files
with
18,456 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
# Codium/VSCode dir (decided to publish it, too) | ||
#.vscode/ | ||
|
||
# Auxiliary dirs | ||
other/ | ||
|
||
# Outdated tests | ||
test/outdated/ | ||
|
||
# Log file | ||
log/qubes_completion_debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
|
||
# Shellcheck settings: | ||
|
||
# 2148 - Because this file does not need shebang by design. (Add a shebang) | ||
# 2207 - Prefer mapfile or read -a to split command output (or quote to avoid splitting). | ||
|
||
# We disable 2207 because or basic calls like | ||
# COMPREPLY+=( $(compgen -W "something" -- "something") ) | ||
# that are considered to be a standard way of doing things | ||
|
||
# shellcheck shell=bash disable=SC2207,SC2148 | ||
|
||
disable=SC2148 | ||
disable=SC2207 | ||
|
||
#external-sources=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "bashdb", | ||
"request": "launch", | ||
"name": "Bash-Debug (simple)", | ||
"cwd": "${workspaceFolder}", | ||
"program": "${file}", | ||
"terminalKind": "integrated" | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
{ | ||
"cSpell.words": [ | ||
"appmenus", | ||
"cdrom", | ||
"CIDP", | ||
"clocksync", | ||
"colour", | ||
"COMPREPLY", | ||
"cword", | ||
"delim", | ||
"devtype", | ||
"Disp", | ||
"dispvm", | ||
"domid", | ||
"dsthost", | ||
"dstports", | ||
"filedir", | ||
"guivm", | ||
"hddisk", | ||
"icmptype", | ||
"isset", | ||
"klass", | ||
"localcmd", | ||
"maxmem", | ||
"multiread", | ||
"netvm", | ||
"nosort", | ||
"pidfile", | ||
"postprocess", | ||
"prefs", | ||
"proto", | ||
"qrexec", | ||
"qube", | ||
"Qubes", | ||
"qubesctl", | ||
"qubesd", | ||
"qubesdb", | ||
"qubesmanager", | ||
"QVMTOOL", | ||
"readline", | ||
"servicevm", | ||
"shellcheck", | ||
"specialtarget", | ||
"trayicon", | ||
"virt", | ||
"vmexec", | ||
"VMNAME", | ||
"whonix", | ||
"xkill", | ||
"xscreensaver" | ||
], | ||
"shellcheck.customArgs": ["-x"], | ||
"cSpell.enableFiletypes": ["shellscript"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run BATS tests", | ||
"type": "shell", | ||
"command": "cd ${workspaceFolder}/test && bats tests/", | ||
"problemMatcher": [], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
@jamke (https://github.com/jamke) |
Oops, something went wrong.