stylelint
Version:
A mighty, modern CSS linter.
321 lines (253 loc) • 4.03 kB
Markdown
# value-keyword-case
Specify lowercase or uppercase for keywords values.
<!-- prettier-ignore -->
```css
a { display: block; }
/** ↑
* These values */
```
This rule ignores [`<custom-idents>`](https://developer.mozilla.org/en/docs/Web/CSS/custom-ident) of known properties. Keyword values which are paired with non-properties (e.g. `$vars` and custom properties), and do not conform to the primary option, can be ignored using the `ignoreKeywords: []` secondary option.
The [`fix` option](../../../docs/user-guide/usage/options.md#fix) can automatically fix all of the problems reported by this rule.
## Options
`string`: `"lower"|"upper"`
### `"lower"`
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a {
display: Block;
}
```
<!-- prettier-ignore -->
```css
a {
display: bLoCk;
}
```
<!-- prettier-ignore -->
```css
a {
display: BLOCK;
}
```
<!-- prettier-ignore -->
```css
a {
transition: -WEBKIT-TRANSFORM 2s;
}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a {
display: block;
}
```
<!-- prettier-ignore -->
```css
a {
transition: -webkit-transform 2s;
}
```
### `"upper"`
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a {
display: Block;
}
```
<!-- prettier-ignore -->
```css
a {
display: bLoCk;
}
```
<!-- prettier-ignore -->
```css
a {
display: block;
}
```
<!-- prettier-ignore -->
```css
a {
transition: -webkit-transform 2s;
}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a {
display: BLOCK;
}
```
<!-- prettier-ignore -->
```css
a {
transition: -WEBKIT-TRANSFORM 2s;
}
```
## Optional secondary options
### `ignoreKeywords: ["/regex/", /regex/, "non-regex"]`
Ignore case of keywords values.
For example, with `"lower"`.
Given:
```
["Block", "/^(f|F)lex$/"]
```
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a {
display: bLoCk;
}
```
<!-- prettier-ignore -->
```css
a {
display: BLOCK;
}
```
<!-- prettier-ignore -->
```css
a {
display: fLeX;
}
```
<!-- prettier-ignore -->
```css
a {
display: FLEX;
}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a {
display: block;
}
```
<!-- prettier-ignore -->
```css
a {
display: Block;
}
```
<!-- prettier-ignore -->
```css
a {
display: flex;
}
```
<!-- prettier-ignore -->
```css
a {
display: Flex;
}
```
### `ignoreProperties: ["/regex/", /regex/, "non-regex"]`
Ignore case of the values of the listed properties.
For example, with `"lower"`.
```js
["/^(b|B)ackground$/", "display"];
```
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a {
text-align: LEFT;
}
```
<!-- prettier-ignore -->
```css
a {
text-align: Left;
}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a {
display: bloCk;
}
```
<!-- prettier-ignore -->
```css
a {
display: BloCk;
}
```
<!-- prettier-ignore -->
```css
a {
display: BLOCK;
}
```
<!-- prettier-ignore -->
```css
a {
display: block;
}
```
<!-- prettier-ignore -->
```css
a {
background: Red;
}
```
<!-- prettier-ignore -->
```css
a {
Background: deepPink;
}
```
### `ignoreFunctions: ["/regex/", /regex/, "non-regex"]`
Ignore case of the values inside the listed functions.
For example, with `"upper"`.
```js
["/^(f|F)oo$/", "t"];
```
The following patterns are considered violations:
<!-- prettier-ignore -->
```css
a {
display: b(inline);
}
```
```css
a {
color: bar(--camelCase);
}
```
The following patterns are _not_ considered violations:
<!-- prettier-ignore -->
```css
a {
display: t(flex);
}
```
<!-- prettier-ignore -->
```css
a {
display: t(fLeX);
}
```
<!-- prettier-ignore -->
```css
a {
color: t(--camelCase);
}
```
<!-- prettier-ignore -->
```css
a {
color: foo(--camelCase);
}
```
<!-- prettier-ignore -->
```css
a {
color: Foo(--camelCase);
}
```