unoffical wafrn mirror
wafrn.net
atproto
social-network
activitypub
1import js from "@eslint/js";
2import globals from "globals";
3import tseslint from "typescript-eslint";
4import { defineConfig } from "eslint/config";
5
6export default defineConfig([
7 { files: ["**/*.{js,mjs,cjs,ts,mts,cts}"], plugins: { js }, extends: ["js/recommended"], languageOptions: { globals: {...globals.browser, ...globals.node} } },
8 tseslint.configs.recommended,
9]);