Skip to content

Commit

Permalink
Upload current state
Browse files Browse the repository at this point in the history
  • Loading branch information
jamke committed Jun 26, 2023
1 parent 0754f5b commit 22c6b45
Show file tree
Hide file tree
Showing 71 changed files with 18,456 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .gitignore
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
17 changes: 17 additions & 0 deletions .shellcheckrc
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
16 changes: 16 additions & 0 deletions .vscode/launch.json
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"
}
]
}
54 changes: 54 additions & 0 deletions .vscode/settings.json
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"]
}
17 changes: 17 additions & 0 deletions .vscode/tasks.json
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
}
}
]
}
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
@jamke (https://github.com/jamke)
Loading

0 comments on commit 22c6b45

Please sign in to comment.