For more info, check https://bit.ly/taskfile-base.
This file contains hidden or 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
| [/] | |
| animate-app-switch=false | |
| animate-show-apps=false | |
| animate-window-launch=false | |
| appicon-margin=2 | |
| available-monitors=[1, 0, 2] | |
| dot-color-1='#606060' | |
| dot-color-2='#606060' | |
| dot-color-3='#606060' | |
| dot-color-4='#606060' |
This file contains hidden or 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
| Verifying that +rickvdstaaij is my blockchain ID. https://onename.com/rickvdstaaij |
This file contains hidden or 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
| [alias] | |
| # View the SHA, description, and history graph of the latest 30 commits | |
| l = log --pretty=oneline -n 30 --graph --abbrev-commit | |
| # View the current working tree status using the short format | |
| s = status -sb | |
| # Show the diff between the latest commit and the current state | |
| d = !"git diff-index --quiet HEAD -- || clear; git --no-pager diff --patch-with-stat" | |
This file contains hidden or 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
| # https://github.com/causes/scss-lint/blob/master/lib/scss_lint/linter/README.md | |
| linters: | |
| # bad : color: #000!important; | |
| # good: color: #000 !important; | |
| BangFormat: | |
| enabled: true | |
| # bad : border: none; | |
| # good: border: 0; | |
| BorderZero: |