We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7295c1d commit e38b2d3Copy full SHA for e38b2d3
tools/linters/.eslintrc.js
@@ -4,6 +4,10 @@ module.exports = {
4
react: {
5
version: "detect"
6
},
7
+ rules: {
8
+ "no-unused-vars": "off",
9
+ "@typescript-eslint/no-unused-vars": "off",
10
+ },
11
12
parserOptions: {
13
ecmaVersion: 2015,
@@ -15,8 +19,5 @@ module.exports = {
15
19
extends: ["plugin:jsonc/recommended-with-json"],
16
20
parser: "jsonc-eslint-parser",
17
21
}
18
- ],
- rules: {
- "no-unused-vars": "off"
- }
22
+ ]
23
};
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');
const CopyWebpackPlugin = require('copy-webpack-plugin');
0 commit comments