From 62b874f92736aa2582fa1aa41c43928815fe84fb Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Tue, 18 Jul 2017 13:11:41 +0200 Subject: [PATCH] disallow ID selectors with new rule --- index.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.js b/index.js index eec143f..1036220 100644 --- a/index.js +++ b/index.js @@ -38,6 +38,7 @@ module.exports = { 'value-no-vendor-prefix': true, 'max-nesting-depth': 3, 'selector-max-compound-selectors': 3, - 'max-empty-lines': 2 + 'max-empty-lines': 2, + 'selector-max-id': 0 } }