linter-bundle
Version:
Ready-to use bundle of linting tools, containing configurations for ESLint, stylelint and markdownlint.
193 lines (155 loc) • 2.27 kB
Markdown
# property-case
Specify lowercase or uppercase for properties.
<!-- prettier-ignore -->
```css
a { width: 1px; }
/** ↑
* This property */
```
The [`fix` option](https://stylelint.io/user-guide/options/#fix) can automatically fix all of the problems reported by this rule.
## Options
`string`: `"lower"|"upper"`
### `"lower"`
The following patterns are considered problems:
<!-- prettier-ignore -->
```css
a {
Width: 1px
}
```
<!-- prettier-ignore -->
```css
a {
WIDTH: 1px
}
```
<!-- prettier-ignore -->
```css
a {
widtH: 1px
}
```
<!-- prettier-ignore -->
```css
a {
border-Radius: 5px;
}
```
<!-- prettier-ignore -->
```css
a {
-WEBKIT-animation-duration: 3s;
}
```
<!-- prettier-ignore -->
```css
@media screen and (orientation: landscape) {
WiDtH: 500px;
}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
a {
width: 1px
}
```
<!-- prettier-ignore -->
```css
a {
border-radius: 5px;
}
```
<!-- prettier-ignore -->
```css
a {
-webkit-animation-duration: 3s;
}
```
<!-- prettier-ignore -->
```css
@media screen and (orientation: landscape) {
width: 500px;
}
```
### `"upper"`
The following patterns are considered problems:
<!-- prettier-ignore -->
```css
a {
Width: 1px
}
```
<!-- prettier-ignore -->
```css
a {
width: 1px
}
```
<!-- prettier-ignore -->
```css
a {
widtH: 1px
}
```
<!-- prettier-ignore -->
```css
a {
border-Radius: 5px;
}
```
<!-- prettier-ignore -->
```css
a {
-WEBKIT-animation-duration: 3s;
}
```
<!-- prettier-ignore -->
```css
@media screen and (orientation: landscape) {
WiDtH: 500px;
}
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
a {
WIDTH: 1px
}
```
<!-- prettier-ignore -->
```css
a {
BORDER-RADIUS: 5px;
}
```
<!-- prettier-ignore -->
```css
a {
-WEBKIT-ANIMATION-DURATION: 3s;
}
```
<!-- prettier-ignore -->
```css
@media screen and (orientation: landscape) {
WIDTH: 500px;
}
```
## Optional secondary options
### `ignoreSelectors: ["/regex/", /regex/, "string"]`
Given:
```json
[
"lower",
{
"ignoreSelectors": [":export"]
}
]
```
The following patterns are _not_ considered problems:
<!-- prettier-ignore -->
```css
:export {
camelCase: value;
}
```