1
0
mirror of https://github.com/bigchaindb/stylelint-config-bigchaindb.git synced 2024-12-28 07:37:48 +01:00

Merge pull request #4 from bigchaindb/fix/at-rules

allow Sass custom @rules
This commit is contained in:
Matthias Kretschmann 2017-07-18 13:38:09 +02:00 committed by GitHub
commit a8a441174b

View File

@ -39,6 +39,7 @@ module.exports = {
'max-nesting-depth': 3, 'max-nesting-depth': 3,
'selector-max-compound-selectors': 3, 'selector-max-compound-selectors': 3,
'max-empty-lines': 2, 'max-empty-lines': 2,
'selector-max-id': 0 'selector-max-id': 0,
'ignoreAtRules': ['extend', 'import', 'mixin']
} }
} }