| 123456789101112 |
- import { base } from "@cprussin/eslint-config";
- import { globalIgnores } from "eslint/config";
- export default [
- globalIgnores(["src/__tests__/**/*", "src/examples/**/*", "**/*.json"]),
- ...base,
- {
- rules: {
- "unicorn/filename-case": "off",
- },
- },
- ];
|