Skip to content

Instantly share code, notes, and snippets.

View trival's full-sized avatar

Thomas Gorny trival

View GitHub Profile
@trival
trival / .prettierrc.json
Created December 20, 2018 15:51
default prettier config
{
"trailingComma": "all",
"semi": false,
"singleQuote": true,
"useTabs": true,
"bracketSpacing": true
}

Keybase proof

I hereby claim:

  • I am trival on github.
  • I am trival (https://keybase.io/trival) on keybase.
  • I have a public key ASDWz6eA86oWaKoUfcPr0go9beSBkGXoMy2WwI9j3V3w9Qo

To claim this, I am signing this object:

@trival
trival / .editorconfig
Last active January 14, 2019 13:35
Default editor config
root = true
[*]
charset = utf-8
indent_style = tab
indent_size = 2
tab_width = 2
trim_trailing_whitespace = true
insert_final_newline = true
@trival
trival / tslint.json
Last active December 20, 2018 15:35
Default tslint for starting projects
{
"extends": ["tslint:recommended", "tslint-config-standard", "tslint-config-prettier"],
"rules": {
"ordered-imports": true,
"no-duplicate-variable": true,
"no-unused-variable": true,
"curly": [true, "ignore-same-line"],
"triple-equals": [
true,
"allow-null-check"