Skip to content

Commit e38b2d3

Browse files
committed
Fix linter-issues
1 parent 7295c1d commit e38b2d3

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tools/linters/.eslintrc.js

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ module.exports = {
44
react: {
55
version: "detect"
66
},
7+
rules: {
8+
"no-unused-vars": "off",
9+
"@typescript-eslint/no-unused-vars": "off",
10+
},
711
},
812
parserOptions: {
913
ecmaVersion: 2015,
@@ -15,8 +19,5 @@ module.exports = {
1519
extends: ["plugin:jsonc/recommended-with-json"],
1620
parser: "jsonc-eslint-parser",
1721
}
18-
],
19-
rules: {
20-
"no-unused-vars": "off"
21-
}
22+
]
2223
};

webpack.config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
const path = require('path');
2-
const webpack = require('webpack');
32
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
43
const CopyWebpackPlugin = require('copy-webpack-plugin');
54

0 commit comments

Comments
 (0)