fix: linter errors

This commit is contained in:
Gísli Kristjánsson 2023-02-02 00:31:32 +00:00 committed by Gísli Kristjánsson
parent 99cc3cef4c
commit f702155222
No known key found for this signature in database
GPG Key ID: 5CE046CC652F7368

View File

@ -12,7 +12,7 @@
const ESLintPlugin = require('eslint-webpack-plugin')
const { configure } = require('quasar/wrappers');
const { configure } = require('quasar/wrappers')
module.exports = configure(function (ctx) {
return {
@ -230,8 +230,6 @@ module.exports = configure(function (ctx) {
.use(ESLintPlugin, [{ extensions: [ 'js' ] }])
},
chainWebpackPreload (chain) {
chain.plugin('eslint-webpack-plugin')
.use(ESLintPlugin, [{ extensions: [ 'js' ] }])
@ -239,4 +237,4 @@ module.exports = configure(function (ctx) {
}
}
});
})