an app to share curated trails sidetrail.app
atproto nextjs react rsc
50
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 16 lines 360 B view raw
1// @ts-check 2 3import { defineConfig } from "eslint/config"; 4import reactHooks from "eslint-plugin-react-hooks"; 5import tseslint from "typescript-eslint"; 6 7export default defineConfig([ 8 { 9 ignores: ["node_modules/", ".next/"], 10 }, 11 { 12 files: ["**/*.ts", "**/*.js", "**/*.tsx"], 13 }, 14 reactHooks.configs.flat.recommended, 15 tseslint.configs.base, 16]);