This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write com.apple.dock persistent-apps -array-add '{"tile-type"="spacer-tile";}'; killall Dock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
Language: Cpp | |
AccessModifierOffset: -4 | |
AlignEscapedNewlinesLeft: true | |
AlignTrailingComments: true | |
AllowAllParametersOfDeclarationOnNextLine: true | |
AllowShortBlocksOnASingleLine: false | |
AllowShortFunctionsOnASingleLine: None | |
AllowShortIfStatementsOnASingleLine: false | |
AllowShortLoopsOnASingleLine: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
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, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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", |