From bfac6e7e0991ec05beb3550059b08b4fd145ca43 Mon Sep 17 00:00:00 2001 From: Grzegorz Leoniec Date: Tue, 12 Feb 2019 19:41:48 +0100 Subject: [PATCH] Removed prettier from styleguide --- styleguide/package.json | 3 +- .../system/components/layout/Modal/Modal.vue | 16 +++---- styleguide/yarn.lock | 45 ------------------- 3 files changed, 7 insertions(+), 57 deletions(-) diff --git a/styleguide/package.json b/styleguide/package.json index 0f42a3a9e..2969817bf 100644 --- a/styleguide/package.json +++ b/styleguide/package.json @@ -5,7 +5,7 @@ "scripts": { "serve": "http-server ./docs -o -s", "build": "yarn theo && vue-cli-service build", - "lint": "vue-cli-service lint", + "lint": "vue-cli-service lint --no-fix", "dev": "npm-run-all --parallel theo:onchange theo servedev", "servedev": "vue-cli-service serve --open", "build:lib": "yarn theo && cross-env BUILD=library vue-cli-service build --target lib --name system ./src/library.js", @@ -25,7 +25,6 @@ "@vue/cli-plugin-eslint": "~3.4.0", "@vue/cli-plugin-unit-jest": "~3.4.0", "@vue/cli-service": "~3.4.0", - "@vue/eslint-config-prettier": "~4.0.1", "@vue/test-utils": "~1.0.0-beta.29", "async-validator": "~1.10.1", "babel-core": "7.0.0-bridge.0", diff --git a/styleguide/src/system/components/layout/Modal/Modal.vue b/styleguide/src/system/components/layout/Modal/Modal.vue index 4a273e680..23d061bb3 100644 --- a/styleguide/src/system/components/layout/Modal/Modal.vue +++ b/styleguide/src/system/components/layout/Modal/Modal.vue @@ -122,34 +122,30 @@ export default { try { if (show) { this.$emit('opened') - document - .getElementsByTagName('body')[0] - .classList - .add('modal-open') + document.getElementsByTagName('body')[0].classList.add('modal-open') } else { document .getElementsByTagName('body')[0] - .classList - .remove('modal-open') + .classList.remove('modal-open') } } catch (err) {} } } }, methods: { - confirm (type = 'confirm') { + confirm(type = 'confirm') { this.$emit('confirm') this.close(type) }, - cancel (type = 'cancel') { + cancel(type = 'cancel') { this.$emit('cancel') this.close(type) }, - close (type) { + close(type) { this.$emit('update:isOpen', false) this.$emit('close', type) }, - backdropHandler () { + backdropHandler() { if (!this.force) { this.cancel('backdrop') } diff --git a/styleguide/yarn.lock b/styleguide/yarn.lock index 730f7db29..b24d218fe 100644 --- a/styleguide/yarn.lock +++ b/styleguide/yarn.lock @@ -1391,15 +1391,6 @@ source-map "~0.6.1" vue-template-es2015-compiler "^1.8.2" -"@vue/eslint-config-prettier@~4.0.1": - version "4.0.1" - resolved "https://registry.yarnpkg.com/@vue/eslint-config-prettier/-/eslint-config-prettier-4.0.1.tgz#a036d0d2193c5c836542b35a3a7c35c4e1c68c97" - integrity sha512-rJEDXPb61Hfgg8GllO3XXFP98bcIxdNNHSrNcxP/vBSukOolgOwQyZJ5f5z/c7ViPyh5/IDlC4qBnhx/0n+I4g== - dependencies: - eslint-config-prettier "^3.3.0" - eslint-plugin-prettier "^3.0.0" - prettier "^1.15.2" - "@vue/preload-webpack-plugin@^1.1.0": version "1.1.0" resolved "https://registry.yarnpkg.com/@vue/preload-webpack-plugin/-/preload-webpack-plugin-1.1.0.tgz#d768dba004261c029b53a77c5ea2d5f9ee4f3cce" @@ -4425,13 +4416,6 @@ escodegen@^1.9.1: optionalDependencies: source-map "~0.6.1" -eslint-config-prettier@^3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-3.3.0.tgz#41afc8d3b852e757f06274ed6c44ca16f939a57d" - integrity sha512-Bc3bh5bAcKNvs3HOpSi6EfGA2IIp7EzWcg2tS4vP7stnXu/J1opihHDM7jI9JCIckyIDTgZLSWn7J3HY0j2JfA== - dependencies: - get-stdin "^6.0.0" - eslint-loader@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/eslint-loader/-/eslint-loader-2.1.1.tgz#2a9251523652430bfdd643efdb0afc1a2a89546a" @@ -4443,13 +4427,6 @@ eslint-loader@^2.1.1: object-hash "^1.1.4" rimraf "^2.6.1" -eslint-plugin-prettier@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.0.0.tgz#f6b823e065f8c36529918cdb766d7a0e975ec30c" - integrity sha512-4g11opzhqq/8+AMmo5Vc2Gn7z9alZ4JqrbZ+D4i8KlSyxeQhZHlmIrY8U9Akf514MoEhogPa87Jgkq87aZ2Ohw== - dependencies: - prettier-linter-helpers "^1.0.0" - eslint-plugin-vue@^4.7.1: version "4.7.1" resolved "https://registry.yarnpkg.com/eslint-plugin-vue/-/eslint-plugin-vue-4.7.1.tgz#c829b9fc62582c1897b5a0b94afd44ecca511e63" @@ -4830,11 +4807,6 @@ fast-deep-equal@^2.0.1: resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49" integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk= -fast-diff@^1.1.2: - version "1.2.0" - resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03" - integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w== - fast-glob@^2.2.6: version "2.2.6" resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-2.2.6.tgz#a5d5b697ec8deda468d85a74035290a025a95295" @@ -5233,11 +5205,6 @@ get-stdin@^4.0.1: resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-4.0.1.tgz#b968c6b0a04384324902e8bf1a5df32579a450fe" integrity sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4= -get-stdin@^6.0.0: - version "6.0.0" - resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b" - integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g== - get-stream@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14" @@ -9098,23 +9065,11 @@ preserve@^0.2.0: resolved "https://registry.yarnpkg.com/preserve/-/preserve-0.2.0.tgz#815ed1f6ebc65926f865b310c0713bcb3315ce4b" integrity sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks= -prettier-linter-helpers@^1.0.0: - version "1.0.0" - resolved "https://registry.yarnpkg.com/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz#d23d41fe1375646de2d0104d3454a3008802cf7b" - integrity sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w== - dependencies: - fast-diff "^1.1.2" - prettier@1.16.3: version "1.16.3" resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.3.tgz#8c62168453badef702f34b45b6ee899574a6a65d" integrity sha512-kn/GU6SMRYPxUakNXhpP0EedT/KmaPzr0H5lIsDogrykbaxOpOfAFfk5XA7DZrJyMAv1wlMV3CPcZruGXVVUZw== -prettier@^1.15.2: - version "1.15.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.15.2.tgz#d31abe22afa4351efa14c7f8b94b58bb7452205e" - integrity sha512-YgPLFFA0CdKL4Eg2IHtUSjzj/BWgszDHiNQAe0VAIBse34148whfdzLagRL+QiKS+YfK5ftB6X4v/MBw8yCoug== - pretty-error@^2.0.2: version "2.1.1" resolved "https://registry.yarnpkg.com/pretty-error/-/pretty-error-2.1.1.tgz#5f4f87c8f91e5ae3f3ba87ab4cf5e03b1a17f1a3"