-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.stylelintrc.js
32 lines (27 loc) · 923 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
32
/**
* @see https://stylelint.io/user-guide/configure
* @type {import("stylelint").Configuration}
*/
module.exports = {
plugins: [
// https://github.com/stylelint-scss/stylelint-scss
// "stylelint-scss",
// https://github.com/hudochenkov/stylelint-order
"stylelint-order",
],
extends: [
// https://github.com/stylelint/stylelint-config-standard
"stylelint-config-standard",
// [SCSS]
// https://github.com/stylelint-scss/stylelint-config-standard-scss
// "stylelint-config-standard-scss",
// https://github.com/stylelint-scss/stylelint-config-recommended-scss
"stylelint-config-recommended-scss",
// [Order]
// https://github.com/stormwarning/stylelint-config-recess-order
// "stylelint-config-recess-order",
],
rules: {
"order/properties-alphabetical-order": true,
},
};