1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-16 18:01:38 +00:00

Update to ESLint 8

And run it:
- `yarn eslint app/**/*.js --fix`
- `yarn eslint web/**/*.js --fix`
This commit is contained in:
Jeremy Benoist 2022-01-05 21:37:45 +01:00
parent c32d136cd2
commit 01609f8514
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
10 changed files with 287 additions and 157 deletions

View file

@ -1,7 +1,6 @@
const { merge } = require('webpack-merge');
const webpack = require('webpack');
const commonConfig = require('./common.js');
const ESLintPlugin = require('eslint-webpack-plugin');
const commonConfig = require('./common');
module.exports = merge(commonConfig, {
devtool: 'eval-source-map',
@ -52,7 +51,7 @@ module.exports = merge(commonConfig, {
},
{
test: /\.(jpg|png|gif|svg|ico|eot|ttf|woff|woff2)$/,
use: 'url-loader',
type: 'asset/inline',
},
],
},