feat: improve no-unused-vars rule
				
					
				
			This commit is contained in:
		| @@ -18,11 +18,13 @@ module.exports = { | ||||
|     'dist', | ||||
|     'LICENSE*', | ||||
|     'output', | ||||
|     'packages-lock.json', | ||||
|     'pnpm-lock.yaml', | ||||
|     'coverage', | ||||
|     'public', | ||||
|     'temp', | ||||
|     'packages-lock.json', | ||||
|     'pnpm-lock.yaml', | ||||
|     'yarn.lock', | ||||
|     '__snapshots__', | ||||
|     '!.github', | ||||
|     '!.vitepress', | ||||
|     '!.vscode', | ||||
|   | ||||
| @@ -25,7 +25,7 @@ module.exports = { | ||||
|     'indent': 'off', | ||||
|     '@typescript-eslint/indent': ['error', 2], | ||||
|     'no-unused-vars': 'off', | ||||
|     '@typescript-eslint/no-unused-vars': 'error', | ||||
|     '@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], | ||||
|     'no-redeclare': 'off', | ||||
|     '@typescript-eslint/no-redeclare': 'error', | ||||
|     'no-use-before-define': 'off', | ||||
|   | ||||
		Reference in New Issue
	
	Block a user