mirror of
https://github.com/cool-team-official/cool-admin-midway-packages.git
synced 2025-12-11 05:42:49 +00:00
20 lines
438 B
JavaScript
20 lines
438 B
JavaScript
// @ts-check
|
|
|
|
import eslint from '@eslint/js';
|
|
import tseslint from 'typescript-eslint';
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
linterOptions: {
|
|
reportUnusedDisableDirectives: false,
|
|
},
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": ["error",
|
|
{ "argsIgnorePattern": "^_" }
|
|
]
|
|
}
|
|
}
|
|
);
|