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