Skip to content

Commit e5cee87

Browse files
committed
Fix eslint errors
1 parent d70b174 commit e5cee87

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

playground/eslint.config.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ module.exports = [
4040
{
4141
files: ['*.js'],
4242
rules: {
43-
'@typescript-eslint/explicit-function-return-type': 'off'
43+
'@typescript-eslint/explicit-function-return-type': 'off',
44+
'@typescript-eslint/no-require-imports': 'off'
4445
}
4546
}
4647
];

playground/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const CopyWebpackPlugin = require('copy-webpack-plugin');
77
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
88
const autoprefixer = require('autoprefixer');
99

10-
module.exports = {
10+
module.exports = {
1111
mode: 'production',
1212
entry: './src/index.tsx',
1313
output: {

playground/webpack.dev-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
const webpackConfig = require('./webpack.config');
22

33
module.exports = {
4-
...webpackConfig,
4+
...webpackConfig,
55
mode: 'development',
66
plugins: webpackConfig.plugins.splice(1),
77
devServer: {

0 commit comments

Comments
 (0)