Skip to content

Commit

Permalink
fix: disable import/newline-after-import in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Nov 2, 2023
1 parent a2621da commit 2335199
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/configs/markdown.ts
Expand Up @@ -37,17 +37,19 @@ export function markdown(options: OptionsComponentExts & OptionsOverrides = {}):
'antfu/no-cjs-exports': 'off',
'antfu/no-ts-export-equal': 'off',

'import/newline-after-import': 'off',

'no-alert': 'off',
'no-console': 'off',
'no-undef': 'off',
'no-unused-expressions': 'off',

'no-unused-vars': 'off',

'node/prefer-global/process': 'off',

'style/comma-dangle': 'off',
'style/eol-last': 'off',

'style/eol-last': 'off',
'ts/consistent-type-imports': 'off',
'ts/no-namespace': 'off',
'ts/no-redeclare': 'off',
Expand Down

0 comments on commit 2335199

Please sign in to comment.