this repo has no description
0
fork

Configure Feed

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

Add ESLint

alice 46e0eb56 b20d0d89

+19
+19
eslint.config.mjs
··· 1 + import eslint from '@eslint/js'; 2 + import tseslint from 'typescript-eslint'; 3 + 4 + export default tseslint.config( 5 + eslint.configs.recommended, 6 + ...tseslint.configs.strictTypeChecked, 7 + ...tseslint.configs.stylisticTypeChecked, 8 + { 9 + languageOptions: { 10 + parserOptions: { 11 + project: './tsconfig.json', 12 + }, 13 + }, 14 + rules: { 15 + '@typescript-eslint/no-non-null-assertion': 'off', 16 + '@typescript-eslint/restrict-template-expressions': 'off', 17 + }, 18 + }, 19 + );