this repo has no description
0
fork

Configure Feed

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

fix eslint config

+17 -3
+17 -3
eslint.config.js
··· 3 3 import xo from 'xo'; 4 4 5 5 export default defineConfig([ 6 - packageJson.configs.recommended, 7 - packageJson.configs.stylistic, 8 - ...xo.xoToEslintConfig([{prettier: 'compat'}]), 6 + { 7 + files: ['**/*.js'], 8 + extends: [ 9 + xo.xoToEslintConfig([ 10 + { 11 + prettier: 'compat', 12 + }, 13 + ]), 14 + ], 15 + }, 16 + { 17 + files: ['package.json'], 18 + extends: [packageJson.configs.recommended, packageJson.configs.stylistic], 19 + rules: { 20 + 'package-json/require-sideEffects': 'off', 21 + }, 22 + }, 9 23 ]);