diff options
Diffstat (limited to '')
-rw-r--r-- | .stylelintrc | 8 | ||||
-rw-r--r-- | .stylelintrc.json | 15 |
2 files changed, 15 insertions, 8 deletions
diff --git a/.stylelintrc b/.stylelintrc deleted file mode 100644 index ff262bc..0000000 --- a/.stylelintrc +++ /dev/null @@ -1,8 +0,0 @@ -{ - "extends": [ - "stylelint-config-twbs-bootstrap" - ], - "rules": { - "scss/selector-no-union-class-name": true - } -} diff --git a/.stylelintrc.json b/.stylelintrc.json new file mode 100644 index 0000000..0be1b29 --- /dev/null +++ b/.stylelintrc.json @@ -0,0 +1,15 @@ +{ + "extends": [ + "stylelint-config-twbs-bootstrap" + ], + "reportInvalidScopeDisables": true, + "reportNeedlessDisables": true, + "overrides": [ + { + "files": "**/*.scss", + "rules": { + "scss/selector-no-union-class-name": true + } + } + ] +} |