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

github.com/nextcloud/password_policy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@protonmail.com>2022-04-12 18:20:10 +0300
committerJohn Molakvoæ <skjnldsv@protonmail.com>2022-04-12 18:20:13 +0300
commit5ed546fd6319a8f148e3f0a2cabb99043b899863 (patch)
treec25c6dbcdc8dee0b082c947803cba036f2f48479 /stylelint.config.js
parentf9f574d4cbeba2baef2fd09769793e81b39f9d9f (diff)
Global configs and npm7
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