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

disallow ID selectors with new rule

This commit is contained in:
Matthias Kretschmann 2017-07-18 13:11:41 +02:00
parent 79538a40e2
commit 62b874f927
Signed by: m
GPG Key ID: 606EEEF3C479A91F

View File

@ -38,6 +38,7 @@ module.exports = {
'value-no-vendor-prefix': true, 'value-no-vendor-prefix': true,
'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
} }
} }