Skip to content

Instantly share code, notes, and snippets.

View kvizconde's full-sized avatar
alert("no sleep")

Kevin Vizconde kvizconde

alert("no sleep")
View GitHub Profile
@kvizconde
kvizconde / dock_space.sh
Created June 20, 2019 06:06
creates empty spaces in mac dock
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock
@kvizconde
kvizconde / .clang-format
Last active July 1, 2019 22:19
clang format style
---
Language: Cpp
AccessModifierOffset: -4
AlignEscapedNewlinesLeft: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortFunctionsOnASingleLine: None
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
@kvizconde
kvizconde / .eslintrc.json
Last active September 22, 2020 05:04
personal eslint settings featuring airbnb style
module.exports = {
extends: ['airbnb-base', 'prettier', 'plugin:react/recommended'],
// eslint:recommended (you could put this inside extends to override airbnb-base)
env: {
node: true,
es6: true,
browser: true,
jest: true,
jquery: true,
@kvizconde
kvizconde / .stylelintrc.json
Last active September 22, 2020 05:14
personal style config for scss/css
{
"extends": ["stylelint-config-recommended-scss"],
"ignoreFiles": ["**/*.js", "**/*.html"],
"plugins": ["stylelint-scss"],
"rules": {
"indentation": 2,
"max-empty-lines": 1,
"string-quotes": "double",
"no-duplicate-selectors": true,
"color-hex-case": "lower",