clash-and-dashboard/.stylelintrc
2018-09-26 00:39:14 +08:00

17 lines
396 B
Plaintext

{
"extends": "stylelint-config-standard",
"rules": {
"indentation": 4,
"font-family-no-missing-generic-family-keyword": null,
"at-rule-no-unknown": [true, {
"ignoreAtRules": ["for", "function", "if", "each", "include", "mixin"]
}]
},
"ignoreFiles": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
]
}