Skip to content

Instantly share code, notes, and snippets.

@shfx
Last active May 23, 2019 09:49
Show Gist options
  • Save shfx/14513367d38feadf42bb0064935792f3 to your computer and use it in GitHub Desktop.
Save shfx/14513367d38feadf42bb0064935792f3 to your computer and use it in GitHub Desktop.
{
"printWidth": 80,
"trailingComma": "es5",
"semi": true,
"singleQuote": true,
"arrowParens": "avoid",
"bracketSpacing": false
}
{
"extends": "stylelint-config-standard",
"plugins": ["stylelint-order"],
"rules": {
"order/order": ["custom-properties","declarations"],
"no-descending-specificity": [true, {"severity": "warning" }],
"no-empty-first-line": true,
"color-no-invalid-hex": true,
"font-family-no-duplicate-names": true,
"max-empty-lines": 1,
"indentation": 2,
"order/properties-alphabetical-order": true
}
}
{
"husky": {
"hooks": {
"pre-commit": "check staged"
}
},
"dependencies": {
"check": "shfx/check",
"eslint": "^5.16.0",
"husky": "^2.3.0",
"stylelint": "^10.0.1",
"stylelint-config-standard": "^18.3.0",
"stylelint-order": "^3.0.0"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment