Skip to content

Commit

Permalink
fix: disable a few rules in docs-svelte-kit (#752)
Browse files Browse the repository at this point in the history
I have no idea how to fix below lint errors.

https://github.com/sveltejs/eslint-plugin-svelte/actions/runs/8978756715/job/24659835714

So I just disable rules.
  • Loading branch information
baseballyama committed May 7, 2024
1 parent 2dac0a3 commit 8070ab3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ const config = [
rules: {
'n/file-extension-in-import': 'off',
'n/no-unsupported-features/es-syntax': 'off',
'n/no-unsupported-features/es-builtins': 'off'
'n/no-unsupported-features/es-builtins': 'off',
'n/no-unsupported-features/node-builtins': 'off',
'n/no-missing-import': 'off'
}
},
{
Expand Down

0 comments on commit 8070ab3

Please sign in to comment.