this repo has no description
0
fork

Configure Feed

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

fix eslint config

+23 -9
+22 -9
eslint.config.js
··· 4 4 5 5 export default defineConfig([ 6 6 globalIgnores(['distribution/', '.tsimp/']), 7 - packageJson.configs.recommended, 8 - packageJson.configs.stylistic, 9 - ...xo.xoToEslintConfig([{prettier: 'compat'}]), 7 + 10 8 { 11 - languageOptions: { 12 - parserOptions: { 13 - projectService: { 14 - // https://typescript-eslint.io/packages/parser/#allowdefaultproject 15 - allowDefaultProject: ['test/*.ts', 'vitest.config.ts'], 9 + files: ['**/*.{js,ts}'], 10 + extends: [ 11 + xo.xoToEslintConfig([ 12 + { 13 + prettier: 'compat', 14 + languageOptions: { 15 + parserOptions: { 16 + projectService: { 17 + // https://typescript-eslint.io/packages/parser/#allowdefaultproject 18 + allowDefaultProject: ['test/*.ts', 'vitest.config.ts'], 19 + }, 20 + }, 21 + }, 16 22 }, 17 - }, 23 + ]), 24 + ], 25 + rules: { 26 + 'e18e/prefer-static-regex': 'off', 18 27 }, 28 + }, 29 + { 30 + files: ['package.json'], 31 + extends: [packageJson.configs.recommended, packageJson.configs.stylistic], 19 32 }, 20 33 ]);
+1
package.json
··· 16 16 }, 17 17 "license": "MIT", 18 18 "author": "Patrik Csak <p@trikcsak.com> (https://patrikcsak.com)", 19 + "sideEffects": false, 19 20 "type": "module", 20 21 "exports": { 21 22 ".": {