mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
0
fork

Configure Feed

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

at patch-expo-modules-core 20 lines 518 B view raw
1{ 2 "root": true, 3 "parser": "@typescript-eslint/parser", 4 "plugins": ["@typescript-eslint", "simple-import-sort"], 5 "extends": [ 6 "eslint:recommended", 7 "preact", 8 "plugin:@typescript-eslint/recommended", 9 "plugin:@typescript-eslint/recommended-requiring-type-checking" 10 ], 11 "rules": { 12 "simple-import-sort/imports": "warn", 13 "simple-import-sort/exports": "warn" 14 }, 15 "parserOptions": { 16 "sourceType": "module", 17 "ecmaVersion": "latest", 18 "project": "./bskyembed/tsconfig.json" 19 } 20}