fogx
@nuxt/eslint & ESLint Flat File Config
Have the same issue. Need some usable template to work with 😢
Particularly on how to import the plugins, like eslint:recommended, typescript-eslint/recommended and vue recommended/essentials
Atleast for semi i can tell you: if you structure it like this itll work:
'semi': ['error', 'always'],
And for eslint:recommended:
import eslint from '@eslint/js';
...eslint.configs.recommended,
with a new way to install it according to typescript-eslint
https://typescript-eslint.io/users/configs/20 replies