We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0cb2e47 commit 426bab8Copy full SHA for 426bab8
.eslintrc.js
@@ -16,9 +16,7 @@ module.exports = {
16
overrides: [{
17
files: ['*.ts', '*.tsx'],
18
rules: {
19
- '@typescript-eslint/no-unused-vars': ['error', {
20
- args: 'none'
21
- }],
+ '@typescript-eslint/no-unused-vars': 'off',
22
},
23
- }, ],
+ }],
24
};
tsconfig.json
@@ -1,6 +1,9 @@
1
{
2
"extends": "./node_modules/@sentry/typescript/tsconfig.json",
3
"compilerOptions": {
4
+ "noUnusedLocals": true,
5
+ "noUnusedParameters": true,
6
+ "strict": true,
7
"declaration": false,
8
"declarationMap": false,
9
"allowJs": true,
0 commit comments