forked from SevenTV/Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.stylelintrc.js
31 lines (31 loc) · 961 Bytes
/
.stylelintrc.js
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
module.exports = {
plugins: ["stylelint-scss"],
extends: [
"stylelint-config-standard",
"stylelint-config-prettier",
"stylelint-config-recommended-scss",
"stylelint-config-recommended-vue",
],
// add your custom config here
// https://stylelint.io/user-guide/configuration
rules: {
"annotation-no-unknown": null,
"at-rule-no-unknown": null,
"color-function-notation": null,
"declaration-block-no-redundant-longhand-properties": null,
"declaration-empty-line-before": null,
"function-no-unknown": null,
"import-notation": null,
"keyframes-name-pattern": null,
"no-descending-specificity": null,
"no-empty-source": null,
"property-no-vendor-prefix": null,
"rule-empty-line-before": null,
"scss/at-import-partial-extension": null,
"scss/no-global-function-names": null,
"selector-class-pattern": null,
"selector-pseudo-element-colon-notation": null,
"value-keyword-case": null,
},
ignoreFiles: ["locale/*.ts"],
};