8 lines
239 B
JavaScript
8 lines
239 B
JavaScript
import tseslint from "typescript-eslint";
|
|
|
|
export default tseslint.config(
|
|
{ ignores: ["dist", "node_modules", ".hypothesis-machine"] },
|
|
...tseslint.configs.recommended,
|
|
{ rules: { "@typescript-eslint/no-explicit-any": "off" } },
|
|
);
|