Skip to content

Commit 8070ab3

Browse files
authored
fix: disable a few rules in docs-svelte-kit (#752)
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.
1 parent 2dac0a3 commit 8070ab3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

eslint.config.mjs

+3-1
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,9 @@ const config = [
129129
rules: {
130130
'n/file-extension-in-import': 'off',
131131
'n/no-unsupported-features/es-syntax': 'off',
132-
'n/no-unsupported-features/es-builtins': 'off'
132+
'n/no-unsupported-features/es-builtins': 'off',
133+
'n/no-unsupported-features/node-builtins': 'off',
134+
'n/no-missing-import': 'off'
133135
}
134136
},
135137
{

0 commit comments

Comments
 (0)