UNPKG

unified-api

Version:

Easily create and call APIs in Typescript

22 lines (18 loc) 509 B
import path from "node:path"; import { fileURLToPath } from "node:url"; import js from "@eslint/js"; import { FlatCompat } from "@eslint/eslintrc"; const __filename = fileURLToPath(import.meta.url); const __dirname = path.dirname(__filename); const compat = new FlatCompat({ baseDirectory: __dirname, recommendedConfig: js.configs.recommended, allConfig: js.configs.all, }); const config = [ { // Ignores has to go in its own config object ignores: ["coverage/**/*"], }, ]; export default config;