an app to share curated trails sidetrail.app
1

Configure Feed

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

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]);