this repo has no description
0
fork

Configure Feed

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

fix eslint config

+21 -9
+21 -9
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([ 9 - { 10 - prettier: 'compat', 11 - rules: { 12 - 'no-await-in-loop': 'off', 13 - }, 6 + { 7 + files: ['**/*.js'], 8 + extends: [ 9 + xo.xoToEslintConfig([ 10 + { 11 + prettier: 'compat', 12 + rules: { 13 + 'no-await-in-loop': 'off', 14 + }, 15 + }, 16 + ]), 17 + ], 18 + }, 19 + { 20 + files: ['package.json'], 21 + extends: [packageJson.configs.recommended, packageJson.configs.stylistic], 22 + rules: { 23 + 'package-json/require-exports': 'off', 24 + 'package-json/require-sideEffects': 'off', 25 + 'package-json/scripts-name-casing': 'off', 14 26 }, 15 - ]), 27 + }, 16 28 ]);