forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.yaml
32 lines (30 loc) · 1.2 KB
/
.stylelintrc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
$schema: https://raw.githubusercontent.com/SchemaStore/schemastore/master/src/schemas/json/stylelintrc.json
extends:
- stylelint-config-recommended
- stylelint-config-standard
- stylelint-prettier/recommended
rules:
import-notation: null
# TODO: fix all of these rules violated in stylelint-config-recommended
no-descending-specificity: null
# this fixer is incompatible with the copyright headers
comment-whitespace-inside: null
# these fixers assume use of `autoprefixer`: we _don't_ use any CSS preprocessors
property-no-vendor-prefix: null
selector-no-vendor-prefix: null
value-no-vendor-prefix: null
# these fixers doesn't work well with variables
alpha-value-notation: null
color-function-notation: null
# TODO: evaluate these unfixable rules violated in stylelint-config-standard
custom-property-pattern: null
declaration-block-no-redundant-longhand-properties: null
function-linear-gradient-no-nonstandard-direction: null
function-url-quotes: null
keyframes-name-pattern: null
number-max-precision: null
selector-class-pattern: null
selector-id-pattern: null
selector-pseudo-class-no-unknown: null
selector-pseudo-element-no-unknown: null
selector-not-notation: null