Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/announcementcenter.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-06-14 17:39:07 +0300
committerJoas Schilling <coding@schilljs.com>2021-06-14 17:47:35 +0300
commitf6c8ac0c79fa8ca727ba3a188d287ba23db0fd6e (patch)
treeee3882a6fc82826c9fda21346e954b184ab32f1c /stylelint.config.js
parentcc527d4f6c4d16a4b006ae15f0fa1c81f3e330a8 (diff)
Move to node 14 npm 7
Signed-off-by: Joas Schilling <coding@schilljs.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 75c793f..5735870 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