Skip to content

Commit

Permalink
fix(basic): JavaScript vue import error (#245)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nikkolast88 committed Sep 14, 2023
1 parent 16dc603 commit a0f5aa8
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/eslint-config-basic/index.js
Expand Up @@ -233,6 +233,7 @@ module.exports = {
'import/no-absolute-path': 'off',
'import/newline-after-import': ['error', { count: 1, considerComments: true }],
'import/no-self-import': 'error',
'import/named': 'off',

// Common
'semi': ['error', 'never'],
Expand Down Expand Up @@ -412,7 +413,7 @@ module.exports = {

// jsdoc
'jsdoc/require-jsdoc': 'off',
"jsdoc/require-param": 'off',
'jsdoc/require-param': 'off',
'jsdoc/require-param-type': 'off',
'jsdoc/require-param-description': 'off',
'jsdoc/require-yields': 'off',
Expand All @@ -422,7 +423,7 @@ module.exports = {
'jsdoc/no-undefined-types': 'off',
'jsdoc/require-returns': 'off',
'jsdoc/require-returns-type': 'off',
"jsdoc/require-throws": 'off',
'jsdoc/require-throws': 'off',

// antfu
'antfu/no-import-node-modules-by-path': 'error',
Expand Down

0 comments on commit a0f5aa8

Please sign in to comment.