debian-mirror-gitlab/.stylelintrc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
653 B
Plaintext
Raw Normal View History

2019-07-07 11:18:12 +05:30
{
2021-04-17 20:07:23 +05:30
"extends": ["@gitlab/stylelint-config"],
2021-03-11 19:13:27 +05:30
"ignoreFiles": [
"app/assets/stylesheets/pages/emojis.scss",
"app/assets/stylesheets/startup/startup-*.scss",
2021-09-04 01:27:46 +05:30
"ee/app/assets/stylesheets/startup/startup-*.scss",
2021-03-11 19:13:27 +05:30
"app/assets/stylesheets/lazy_bundles/select2.scss",
2021-04-17 20:07:23 +05:30
"app/assets/stylesheets/highlight/themes/*.scss",
"app/assets/stylesheets/lazy_bundles/cropper.css"
2021-03-11 19:13:27 +05:30
],
2019-07-07 11:18:12 +05:30
"plugins":[
2022-06-21 17:19:12 +05:30
"./scripts/frontend/stylelint/stylelint_duplicate_selectors.js",
"./scripts/frontend/stylelint/stylelint_utility_classes.js",
2019-07-07 11:18:12 +05:30
],
"rules":{
2021-03-11 19:13:27 +05:30
"stylelint-gitlab/utility-classes":[true,{ "severity": "warning" }],
2019-07-07 11:18:12 +05:30
}
}