Index: stylelint-config-eyeo/index.js |
=================================================================== |
--- a/stylelint-config-eyeo/index.js |
+++ b/stylelint-config-eyeo/index.js |
@@ -66,13 +66,18 @@ |
// Line length should be 80 characters or less |
"max-line-length": 80, |
// Avoid qualifying ID and class names with type selectors |
"selector-no-qualifying-type": [true, { |
"ignore": ["attribute"] |
}], |
+ // Font weight values should be specified in relative or numerical notation |
+ "font-weight-notation": ["numeric", { |
+ "ignore": ["relative"] |
+ }], |
+ |
// CSS rule declaration order should follow the WordPress CSS |
// Coding Standards |
"order/properties-order": require("./css-properties-order") |
} |
}; |