We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
antfu
Learn more about funding links in repositories.
Report abuse
1 parent 16dc603 commit a0f5aa8Copy full SHA for a0f5aa8
packages/eslint-config-basic/index.js
@@ -233,6 +233,7 @@ module.exports = {
233
'import/no-absolute-path': 'off',
234
'import/newline-after-import': ['error', { count: 1, considerComments: true }],
235
'import/no-self-import': 'error',
236
+ 'import/named': 'off',
237
238
// Common
239
'semi': ['error', 'never'],
@@ -412,7 +413,7 @@ module.exports = {
412
413
414
// jsdoc
415
'jsdoc/require-jsdoc': 'off',
- "jsdoc/require-param": 'off',
416
+ 'jsdoc/require-param': 'off',
417
'jsdoc/require-param-type': 'off',
418
'jsdoc/require-param-description': 'off',
419
'jsdoc/require-yields': 'off',
@@ -422,7 +423,7 @@ module.exports = {
422
423
'jsdoc/no-undefined-types': 'off',
424
'jsdoc/require-returns': 'off',
425
'jsdoc/require-returns-type': 'off',
- "jsdoc/require-throws": 'off',
426
+ 'jsdoc/require-throws': 'off',
427
428
// antfu
429
'antfu/no-import-node-modules-by-path': 'error',
0 commit comments