Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.stylelintrc « examples « 5.0 « docs « content « site - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc76dedbde328e296c0578d4f7880b587a5b009c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  "extends": [
    "stylelint-config-twbs-bootstrap/css"
  ],
  "rules": {
    "at-rule-no-vendor-prefix": null,
    "comment-empty-line-before": null,
    "media-feature-name-no-vendor-prefix": null,
    "property-blacklist": null,
    "property-no-vendor-prefix": null,
    "selector-no-qualifying-type": null,
    "selector-no-vendor-prefix": null,
    "value-no-vendor-prefix": null
  }
}