Skip to content

Instantly share code, notes, and snippets.

@sinsunsan
Created February 4, 2020 10:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sinsunsan/331fdf8c36371a6a1eb8dff0658708c3 to your computer and use it in GitHub Desktop.
Save sinsunsan/331fdf8c36371a6a1eb8dff0658708c3 to your computer and use it in GitHub Desktop.
Default style lint config
{
"extends": "stylelint-config-recommended-scss",
"rules": {
"selector-pseudo-element-no-unknown": [
true,
{
"ignorePseudoElements": [
"ng-deep"
]
}
],
"property-blacklist": [
"font-weight",
"font-size"
],
"color-named": "never",
"color-no-hex": true,
"selector-type-no-unknown": [
true,
{
"ignoreTypes": [
"/^onetd-/",
"/^mat-/",
"/^ag-/"
]
}
]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment