mirror of
https://github.com/acamarata/qibla.git
synced 2026-06-30 19:04:28 +00:00
10 lines
218 B
JavaScript
10 lines
218 B
JavaScript
import eslint from "@eslint/js";
|
|
import tseslint from "typescript-eslint";
|
|
|
|
export default tseslint.config(
|
|
eslint.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
{
|
|
ignores: ["dist/", "*.cjs"],
|
|
},
|
|
);
|