diff --git a/.stylelintignore b/.stylelintignore deleted file mode 100644 index d00d567c..00000000 --- a/.stylelintignore +++ /dev/null @@ -1 +0,0 @@ -src/assets diff --git a/.stylelintrc b/.stylelintrc deleted file mode 100644 index bf3fe7b9..00000000 --- a/.stylelintrc +++ /dev/null @@ -1,27 +0,0 @@ -{ - "extends": "stylelint-config-sass-guidelines", - "plugins": [ - "stylelint-order" - ], - "rules": { - "property-no-vendor-prefix": null, - "declaration-block-semicolon-newline-after": "always-multi-line", - "declaration-property-value-blacklist": null, - "selector-no-qualifying-type": null, - "selector-pseudo-element-no-unknown": null, - "selector-no-vendor-prefix": null, - "media-feature-name-no-vendor-prefix": null, - "scss/at-import-partial-extension-blacklist": null, - "scss/selector-no-redundant-nesting-selector": null, - "scss/at-mixin-pattern": null, - "scss/dollar-variable-pattern": null, - "order/properties-alphabetical-order": null, - "selector-max-id": null, - "property-no-unknown": null, - "color-named": null, - "value-no-vendor-prefix": null, - "selector-class-pattern": null, - "max-nesting-depth": 10, - "selector-max-compound-selectors": 10 - } -} diff --git a/package.json b/package.json index 0ad593db..1593ac7d 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "build:stage": "vue-cli-service build --mode staging", "preview": "node build/index.js --preview", "lint": "eslint --ext .js,.vue src", - "lint:css": "stylelint --aei .vue,.html src", "test:unit": "jest --clearCache && vue-cli-service test:unit", "test:ci": "npm run lint && npm run test:unit", "svgo": "svgo -f src/icons/svg --config=src/icons/svgo.yml", @@ -100,9 +99,6 @@ "sass-loader": "^7.1.0", "script-ext-html-webpack-plugin": "2.1.3", "serve-static": "^1.13.2", - "stylelint": "13.5.0", - "stylelint-config-sass-guidelines": "7.0.0", - "stylelint-order": "4.0.0", "svg-sprite-loader": "4.1.3", "svgo": "1.2.0", "vue-template-compiler": "2.6.10" diff --git a/src/components/BackToTop/index.vue b/src/components/BackToTop/index.vue index a2061ff3..36522f4a 100644 --- a/src/components/BackToTop/index.vue +++ b/src/components/BackToTop/index.vue @@ -1,7 +1,7 @@ @@ -96,15 +96,15 @@ export default { .fade-enter-active, .fade-leave-active { - transition: opacity 0.5s; + transition: opacity .5s; } .fade-enter, .fade-leave-to { - opacity: 0; + opacity: 0 } -.back-to-ceiling .back-to-icon { +.back-to-ceiling .Icon { fill: #9aaabf; background: none; } diff --git a/src/components/DndList/index.vue b/src/components/DndList/index.vue index 2862d52a..23ca006e 100644 --- a/src/components/DndList/index.vue +++ b/src/components/DndList/index.vue @@ -1,23 +1,23 @@