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

github.com/westberliner/checksum.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatrick <patrick@westberliner.net>2021-02-27 18:14:20 +0300
committerpatrick <patrick@westberliner.net>2021-02-27 18:14:20 +0300
commita7b6d5eaa319574de35fd60fecf216fedb5ff015 (patch)
tree726dd7755914a137a4326bcef2d35a5dd3d487fa /stylelint.config.js
parent273c3ea775a0feb32602baf957db758e1e18b7b8 (diff)
Switching frontend to vue. Adding crc32b algorithm.
Diffstat (limited to 'stylelint.config.js')
-rw-r--r--stylelint.config.js32
1 files changed, 32 insertions, 0 deletions
diff --git a/stylelint.config.js b/stylelint.config.js
new file mode 100644
index 0000000..e6e8707
--- /dev/null
+++ b/stylelint.config.js
@@ -0,0 +1,32 @@
+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'],
+}