Skip to content

Instantly share code, notes, and snippets.

View flapjackfritz's full-sized avatar

Tommy Fritz flapjackfritz

  • Covidence.org
  • Waikato, New Zealand
  • 04:57 (UTC +12:00)
View GitHub Profile
@flapjackfritz
flapjackfritz / settings.json
Created June 1, 2021 10:28
vscode settings.json for survey-app
{
"css.validate": false, // handled by stylelint
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.lintTask.enable": true, // contributes a lint task to lint a whole workspace folder
"eslint.options": { "configFile": "./.dev.eslintrc.js" },
"eslint.workingDirectories": ["./web", "./e2eTest/playwright"],
"[javascript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" },
"[typescript]": { "editor.defaultFormatter": "dbaeumer.vscode-eslint" }
### Keybase proof
I hereby claim:
* I am flapjackfritz on github.
* I am flapjack (https://keybase.io/flapjack) on keybase.
* I have a public key ASAMgu82qJdsYdneoCfBN_nxFi08x4xT-3jKftD2E6-DPwo
To claim this, I am signing this object:
@flapjackfritz
flapjackfritz / tmux.conf
Last active August 30, 2018 21:13
conf file for setting up how tmux behaves.
set -g prefix C-a
unbind C-b
bind C-a send-prefix
set-window-option -g utf8 on # utf8 support
bind R source-file ~/.tmux.conf \; display-message " Config reloaded.."
set -g default-terminal "screen-256color"
set-option -g default-shell /bin/bash