1.3.0 • Published 8 years ago

stylelint-plugin-regru v1.3.0

Weekly downloads
11
License
MIT
Repository
github
Last release
8 years ago

stylelint-plugin-regru

Stylelint rules for REG.RU project

npm i stylelint stylelint-plugin-regru

function-space-quotes-inside

Add exception for () parens which contains ONLY string expression like:

//never-single-line-quotes
.block {
    background: url('hello.png'); //correct
    background: url( 'hello.png' ); //incorrect
}

//always-single-line-quotes
.block {
    background: url( 'hello.png' ); //correct
    background: url('hello.png'); //incorrect
}
//.stylelintrc
{
  "plugins": [
    "stylelint-plugin-regru"
  ],
  "rules": {
    "stylelint-plugin-regru/function-space-quotes-inside": "never-single-line-quotes"
  }
}
1.3.0

8 years ago

1.2.0

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago