Update your ATProto bio with what you're currently listening to
2
fork

Configure Feed

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

at main 18 lines 465 B view raw
1import { defineConfig, globalIgnores } from "eslint/config"; 2import nextVitals from "eslint-config-next/core-web-vitals"; 3import nextTs from "eslint-config-next/typescript"; 4 5const eslintConfig = defineConfig([ 6 ...nextVitals, 7 ...nextTs, 8 // Override default ignores of eslint-config-next. 9 globalIgnores([ 10 // Default ignores of eslint-config-next: 11 ".next/**", 12 "out/**", 13 "build/**", 14 "next-env.d.ts", 15 ]), 16]); 17 18export default eslintConfig;