We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b906809 commit da8ddd0Copy full SHA for da8ddd0
lib/index.js
@@ -1,3 +1,4 @@
1
+/* eslint-disable */
2
Object.defineProperty(exports, '__esModule', { value: true })
3
4
function css(_) {
@@ -11,7 +12,6 @@ function StyledVue(Vue) {
11
12
render(h) {
13
const globalStyle = this.$parent.$options.globalStyle(this.$parent)
14
let css = ''
- // eslint-disable-next-line guard-for-in
15
for (const key in globalStyle) {
16
css += key + ':' + globalStyle[key] + ';'
17
}
package.json
@@ -59,7 +59,8 @@
59
"jest"
60
],
61
"rules": {
62
- "unicorn/filename-case": "off"
+ "unicorn/filename-case": "off",
63
+ "unicorn/no-abusive-eslint-disable": "off"
64
65
},
66
"husky": {
0 commit comments