summaryrefslogtreecommitdiffstats
path: root/stylelint.config.js
diff options
context:
space:
mode:
authorJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-14 07:12:22 +0200
committerJohn Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>2021-06-15 11:36:47 +0200
commitde91d5f753e2e4d91a697bc3d5c2720603810390 (patch)
treec240f7d73b5460dd261c8536b5a0c3604a5896f8 /stylelint.config.js
parentdab8d5d31610fc9b2e95622766a1ddb46cbd51f4 (diff)
Bump deps and use npm7
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'stylelint.config.js')
-rw-r--r--stylelint.config.js35
1 files changed, 3 insertions, 32 deletions
diff --git a/stylelint.config.js b/stylelint.config.js
index 75c793f6..57358701 100644
--- a/stylelint.config.js
+++ b/stylelint.config.js
@@ -1,32 +1,3 @@
-module.exports = {
- extends: 'stylelint-config-recommended-scss',
- rules: {
- indentation: 'tab',
- 'selector-type-no-unknown': null,
- 'number-leading-zero': null,
- 'rule-empty-line-before': [
- 'always',
- {
- ignore: ['after-comment', 'inside-block'],
- },
- ],
- 'declaration-empty-line-before': [
- 'never',
- {
- ignore: ['after-declaration'],
- },
- ],
- 'comment-empty-line-before': null,
- 'selector-type-case': null,
- 'selector-list-comma-newline-after': null,
- 'no-descending-specificity': null,
- 'string-quotes': 'single',
- 'selector-pseudo-element-no-unknown': [
- true,
- {
- ignorePseudoElements: ['v-deep'],
- },
- ],
- },
- plugins: ['stylelint-scss'],
-}
+const stylelintConfig = require('@nextcloud/stylelint-config')
+
+module.exports = stylelintConfig