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

github.com/nextcloud/files_pdfviewer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-01-05 11:27:42 +0300
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-01-05 11:27:42 +0300
commit30093b718795421b43fc964b5a0969fd6378ef36 (patch)
tree097e93a81f879755c92e439db2e9d70feda3bd99 /stylelint.config.js
parent084249e19895a5fe8585039e7688b03ac715cbf5 (diff)
Fix stylelint config
Signed-off-by: John Molakvoæ <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 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