You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
vite build seems to be producing duplicate output for eslint; one for [plugin:vite-plugin-eslint] and one normal:
[plugin:vite-plugin-eslint]
/Users/user/project/src/utilities/resourceUtils.ts
1:10 warning 'useState' is defined but never used @typescript-eslint/no-unused-vars
1:20 warning 'useEffect' is defined but never used @typescript-eslint/no-unused-vars
4:20 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
8:9 error 'base' is never reassigned. Use 'const' instead prefer-const
11:9 error 'options' is never reassigned. Use 'const' instead prefer-const
✖ 5 problems (2 errors, 3 warnings)
2 errors and 0 warnings potentially fixable with the `--fix` option.
/Users/user/project/src/utilities/resourceUtils.ts
1:10 warning 'useState' is defined but never used @typescript-eslint/no-unused-vars
1:20 warning 'useEffect' is defined but never used @typescript-eslint/no-unused-vars
4:20 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
8:9 error 'base' is never reassigned. Use 'const' instead prefer-const
11:9 error 'options' is never reassigned. Use 'const' instead prefer-const
✖ 5 problems (2 errors, 3 warnings)
2 errors and 0 warnings potentially fixable with the `--fix` option.
The text was updated successfully, but these errors were encountered:
@samcarswell et al, not sure if you ever got to the bottom of this but I was experiencing a similar issue with vite and it ended up being the solidjs plugin creating duplicate build config entries (running twice). This sounds very similar to your issue. Check out details here: solidjs/vite-plugin-solid#101
vite build
seems to be producing duplicate output for eslint; one for[plugin:vite-plugin-eslint]
and one normal:The text was updated successfully, but these errors were encountered: