diff --git a/.stylelintrc.js b/.stylelintrc.js new file mode 100644 index 0000000..eb79caa --- /dev/null +++ b/.stylelintrc.js @@ -0,0 +1,18 @@ +// 2018 July 25 +// https://github.com/bevry/base +// https://stylelint.io/user-guide/rules/ +module.exports = { + "extends": "stylelint-config-standard", + "rules": { + "indentation": "tab", + "rule-empty-line-before": null, + "custom-property-empty-line-before": null, + "at-rule-empty-line-before": null, + "declaration-empty-line-before": null, + "max-empty-lines": 2, + "selector-list-comma-newline-after": null, + "no-duplicate-selectors": null, + "no-descending-specificity": null + }, + "ignoreFiles": ["**/vendor/*.css", "node_modules"] +}