-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylelint.config.js
More file actions
31 lines (30 loc) · 828 Bytes
/
stylelint.config.js
File metadata and controls
31 lines (30 loc) · 828 Bytes
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
module.exports = {
customSyntax: 'postcss-html',
extends: [
'stylelint-config-standard',
'stylelint-config-recommended',
'stylelint-config-recommended-scss',
'stylelint-config-prettier',
],
// add your custom config here
// https://stylelint.io/user-guide/configuration
rules: {
'at-rule-no-unknown': null,
'scss/at-rule-no-unknown': true,
'no-descending-specificity': null,
'no-duplicate-selectors': null,
'no-empty-source': null,
'no-extra-semicolons': null,
'no-invalid-double-slash-comments': null,
'no-missing-end-of-source-newline': null,
'no-unknown-animations': null,
'no-unused-selectors': null,
'no-unused-vars': null,
'selector-pseudo-class-no-unknown': [
true,
{
ignorePseudoClasses: ['global'],
},
],
},
}