Remove quasar config eslint
gitea/hedera-web/pipeline/pr-beta This commit looks good Details

This commit is contained in:
William Buezas 2025-02-05 15:56:00 -03:00
parent 215142c6b7
commit 38dd1d6303
1 changed files with 4 additions and 24 deletions

View File

@ -8,7 +8,6 @@
// Configuration for your app
// https://v2.quasar.dev/quasar-cli-webpack/quasar-config-js
// const ESLintPlugin = require('eslint-webpack-plugin');
const path = require('path');
const { configure } = require('quasar/wrappers');
@ -68,9 +67,6 @@ module.exports = configure(function (ctx) {
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpack(chain) {
// chain
// .plugin('eslint-webpack-plugin')
// .use(ESLintPlugin, [{ extensions: ['js', 'vue'] }]);
chain.resolve.alias.set('@', path.resolve(__dirname, 'src'));
chain.module
.rule('i18n-resource')
@ -143,11 +139,7 @@ module.exports = configure(function (ctx) {
maxAge: 1000 * 60 * 60 * 24 * 30,
// Tell browser when a file from the server should expire from cache (in ms)
chainWebpackWebserver(chain) {
// chain
// .plugin('eslint-webpack-plugin')
// .use(ESLintPlugin, [{ extensions: ['js'] }]);
},
chainWebpackWebserver(chain) {},
middlewares: [
ctx.prod ? 'compression' : '',
@ -163,11 +155,7 @@ module.exports = configure(function (ctx) {
// for the custom service worker ONLY (/src-pwa/custom-service-worker.[js|ts])
// if using workbox in InjectManifest mode
chainWebpackCustomSW(chain) {
// chain
// .plugin('eslint-webpack-plugin')
// .use(ESLintPlugin, [{ extensions: ['js'] }]);
},
chainWebpackCustomSW(chain) {},
manifest: {
name: 'Hedera',
@ -240,17 +228,9 @@ module.exports = configure(function (ctx) {
// "chain" is a webpack-chain object https://github.com/neutrinojs/webpack-chain
chainWebpackMain(chain) {
// chain
// .plugin('eslint-webpack-plugin')
// .use(ESLintPlugin, [{ extensions: ['js'] }]);
},
chainWebpackMain(chain) {},
chainWebpackPreload(chain) {
// chain
// .plugin('eslint-webpack-plugin')
// .use(ESLintPlugin, [{ extensions: ['js'] }]);
}
chainWebpackPreload(chain) {}
}
};
});