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 localize-dates 21 lines 548 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 'no-else-return': 'off' 15 }, 16 "parserOptions": { 17 "sourceType": "module", 18 "ecmaVersion": "latest", 19 "project": "./bskyembed/tsconfig.json" 20 } 21}