12 lines
242 B
JavaScript
12 lines
242 B
JavaScript
import tseslint from "typescript-eslint";
|
|
|
|
export default tseslint.config(
|
|
...tseslint.configs.recommended,
|
|
{
|
|
rules: {
|
|
"@typescript-eslint/no-unused-vars": "warn",
|
|
"@typescript-eslint/no-explicit-any": "warn"
|
|
}
|
|
}
|
|
);
|