this repo has no description
0
fork

Configure Feed

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

better? eslint config

alice 3f1d6a60 ee3b9d8d

+6 -3
+6 -3
eslint.config.mjs
··· 8 8 { 9 9 languageOptions: { 10 10 parserOptions: { 11 - project: './tsconfig.json', 11 + projectService: { 12 + allowDefaultProject: ['*.js'], 13 + defaultProject: 'tsconfig.json', 14 + }, 12 15 }, 13 16 }, 14 17 rules: { ··· 18 21 }, 19 22 { 20 23 files: ['eslint.config.mjs'], 21 - extends: [tseslint.configs.disableTypeChecked] 22 - } 24 + extends: [tseslint.configs.disableTypeChecked], 25 + }, 23 26 );