Skip to content

Commit

Permalink
Enable a few more rules: (#70)
Browse files Browse the repository at this point in the history
* scss/at-import-partial-extension
* scss/dimension-no-non-numeric-values
* scss/selector-no-redundant-nesting-selector
  • Loading branch information
XhmikosR authored Sep 15, 2020
1 parent 24d23ef commit f0b4081
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scss/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,12 @@ module.exports = {
'scss/at-function-pattern': '^[a-z][a-z-]*$',
'scss/at-function-parentheses-space-before': 'never',
'scss/at-import-no-partial-leading-underscore': true,
'scss/at-import-partial-extension': 'never',
'scss/at-mixin-argumentless-call-parentheses': 'always',
'scss/at-mixin-named-arguments': null,
'scss/at-mixin-parentheses-space-before': 'never',
'scss/at-rule-no-unknown': true,
'scss/dimension-no-non-numeric-values': true,
'scss/dollar-variable-colon-space-after': 'at-least-one-space',
'scss/dollar-variable-colon-space-before': 'never',
'scss/dollar-variable-no-missing-interpolation': true,
Expand All @@ -32,6 +34,7 @@ module.exports = {
'scss/no-duplicate-mixins': true,
'scss/operator-no-newline-after': true,
'scss/operator-no-newline-before': true,
'scss/operator-no-unspaced': true
'scss/operator-no-unspaced': true,
'scss/selector-no-redundant-nesting-selector': true
}
};

0 comments on commit f0b4081

Please sign in to comment.