Skip to content

Commit 03512d5

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

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tools/linters/.eslintrc.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ module.exports = {
1414
files: ["*.json"],
1515
extends: ["plugin:jsonc/recommended-with-json"],
1616
parser: "jsonc-eslint-parser",
17+
rules: {
18+
"no-unused-vars": ["error", { "args": "none" }]
19+
},
1720
}
18-
],
19-
rules: {
20-
"no-unused-vars": "off"
21-
}
21+
]
2222
};

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)