Skip to content

Instantly share code, notes, and snippets.

View Kastango's full-sized avatar

Arthur Sosnowski Kastango

View GitHub Profile
@Kastango
Kastango / json
Created September 5, 2020 19:20
windows terminal app
// This file was initially generated by Windows Terminal 1.2.2381.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@Kastango
Kastango / .editorconfig
Created September 11, 2019 12:28
.editorconfig
root = true
[*]
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
@Kastango
Kastango / .eslintrc.js
Created September 11, 2019 12:15
.eslintrc config
module.exports = {
env: {
es6: true,
node: true,
},
extends: ['airbnb-base', 'prettier'],
plugins: ['prettier'],
globals: {
Atomics: 'readonly',
SharedArrayBuffer: 'readonly',