Skip to content

Instantly share code, notes, and snippets.

@hmsk
Created July 24, 2018 09:05
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 hmsk/cfe3ce464cd2b7febcfabc8c88ac8e48 to your computer and use it in GitHub Desktop.
Save hmsk/cfe3ce464cd2b7febcfabc8c88ac8e48 to your computer and use it in GitHub Desktop.
My compact and efficient Stylelint configuration for Vue project
module.exports = {
processors: [
["@mapbox/stylelint-processor-arbitrary-tags", { fileFilterRegex: [/\.vue$/] }]
],
extends: [
"stylelint-config-standard",
"stylelint-config-recess-order"
],
rules: {
"no-empty-source": null
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment