Explains to eslit that is a global variable so it can stop complaining about it every time we build ;)
This commit is contained in:
parent
df73c5de78
commit
c3070126dd
15
.eslintrc.js
15
.eslintrc.js
|
@ -5,15 +5,18 @@ module.exports = {
|
|||
'plugin:vue/strongly-recommended'
|
||||
],
|
||||
parserOptions: {
|
||||
"ecmaVersion": 2017
|
||||
'ecmaVersion': 2017
|
||||
},
|
||||
rules: {
|
||||
// override/add rules settings here, such as:
|
||||
'vue/no-unused-vars': 'error',
|
||||
"no-console": "warn",
|
||||
"no-unused-vars": "warn",
|
||||
"no-undef": "warn",
|
||||
"vue/html-indent": "off",
|
||||
"vue/require-default-prop": "off", // https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-default-prop.md
|
||||
'no-console': 'warn',
|
||||
'no-unused-vars': 'warn',
|
||||
'no-undef': 'warn',
|
||||
'vue/html-indent': 'off',
|
||||
'vue/require-default-prop': 'off', // https://github.com/vuejs/eslint-plugin-vue/blob/master/docs/rules/require-default-prop.md
|
||||
},
|
||||
globals: {
|
||||
'tainacan_plugin': true
|
||||
}
|
||||
}
|
|
@ -334,6 +334,7 @@ export default {
|
|||
left: 0;
|
||||
top: auto;
|
||||
visibility: hidden;
|
||||
display: table-cell;
|
||||
|
||||
&::before {
|
||||
box-shadow: inset 54px 0 10px -12px #222;
|
||||
|
@ -401,7 +402,7 @@ export default {
|
|||
}
|
||||
}
|
||||
img.table-thumb {
|
||||
max-height: 38px !important;
|
||||
max-height: 37px !important;
|
||||
border-radius: 3px;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue