| 123456789 |
- import { base } from "@cprussin/eslint-config";
- import { globalIgnores } from "eslint/config";
- export default [
- // everything in this project is generated by a script
- globalIgnores(["src/**/*/*"]),
- ...base,
- { rules: { "unicorn/filename-case": "off" } },
- ];
|