We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7295c1d commit 03512d5Copy full SHA for 03512d5
tools/linters/.eslintrc.js
@@ -14,9 +14,9 @@ module.exports = {
14
files: ["*.json"],
15
extends: ["plugin:jsonc/recommended-with-json"],
16
parser: "jsonc-eslint-parser",
17
+ rules: {
18
+ "no-unused-vars": ["error", { "args": "none" }]
19
+ },
20
}
- ],
- rules: {
- "no-unused-vars": "off"
21
- }
+ ]
22
};
webpack.config.js
@@ -1,5 +1,4 @@
1
const path = require('path');
2
-const webpack = require('webpack');
3
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
4
const CopyWebpackPlugin = require('copy-webpack-plugin');
5
0 commit comments