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
module.exports={extends: ['eslint:recommended','plugin:@typescript-eslint/recommended','@loopback/eslint-config',],parser: '@typescript-eslint/parser',plugins: ['@typescript-eslint'],root: true,rules: {'@typescript-eslint/no-misused-promises': [2,{checksVoidReturn: {attributes: false,},},],'@typescript-eslint/no-unsafe-assignment': 'off','@typescript-eslint/no-explicit-any': 'off','@typescript-eslint/prefer-nullish-coalescing': 'off','@typescript-eslint/naming-convention': 'off',},overrides: [{files: ['*.ts'],// Your TypeScript files extensionparserOptions: {project: ['tsconfig.json'],// Specify it only for TypeScript filestsconfigRootDir: __dirname,},},],};
It will produce the error
migrate ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
✖ Migration has encountered an error: The module '@loopback/eslint-config-eslint-config' cannot be loaded. Make sure that the module exists.```
### Expected result
Expecting to complate the migration of eslint file
### Code of Conduct
- [X] I agree to follow Biome's Code of Conduct
The text was updated successfully, but these errors were encountered:
Conaclos
changed the title
Esline Migraition adding prefix "eslint-config-" when package have only "eslint-config" as name
Eslint Migraition adding prefix "eslint-config-" when package have only "eslint-config" as name
May 5, 2024
Environment information
What happened?
1: Setup loopback service using "https://loopback.io/doc/en/lb4/Getting-started.html"
2: run "npx @biomejs/biome migrate eslint --write --include-inspired"
3: Update .eslintrc.js as following
It will produce the error
The text was updated successfully, but these errors were encountered: