-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc
executable file
·20 lines (20 loc) · 1017 Bytes
/
.stylelintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"extends": ["stylelint-config-react-native-css-modules", "stylelint-prettier/recommended"],
"plugins": ["stylelint-react-native", "stylelint-a11y", "stylelint-prettier"],
"rules": {
"selector-class-pattern": "^[a-z][a-zA-Z0-9]*$",
"react-native/css-property-no-unknown": true,
"prettier/prettier": true,
"a11y/media-prefers-reduced-motion": true,
"a11y/no-outline-none": true,
"a11y/selector-pseudo-class-focus": true,
"a11y/content-property-no-static-value": [true, { "severity": "warning" }],
"a11y/font-size-is-readable": [true, { "severity": "warning" }],
"a11y/line-height-is-vertical-rhythmed": [true, { "severity": "warning" }],
"a11y/no-display-none": [true, { "severity": "warning" }],
"a11y/no-spread-text": [true, { "severity": "warning" }],
"a11y/no-obsolete-attribute": [true, { "severity": "warning" }],
"a11y/no-obsolete-element": [true, { "severity": "warning" }],
"a11y/no-text-align-justify": [true, { "severity": "warning" }]
}
}