We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b31244a commit 54ca574Copy full SHA for 54ca574
eslint.config.js
@@ -3,11 +3,17 @@ import svelteParser from 'svelte-eslint-parser';
3
import tsParser from '@typescript-eslint/parser';
4
5
export default [
6
+ {
7
+ rules: {
8
+ 'no-console': ['error', { allow: ['error'] }]
9
+ }
10
+ },
11
...svelte.configs.recommended,
12
{
13
files: ['**/*.svelte', '*.svelte'],
14
rules: {
- 'svelte/no-object-in-text-mustaches': 'warn'
15
+ 'svelte/no-object-in-text-mustaches': 'warn',
16
+ 'svelte/no-inspect': 'warn'
17
},
18
ignores: ['dist/*', '.sveltepress/*'],
19
languageOptions: {
0 commit comments