File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages/eslint-plugin-svelte Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,9 @@ const config = [
41
41
'@typescript-eslint/naming-convention' : 'off' ,
42
42
'new-cap' : 'off' ,
43
43
complexity : 'off' ,
44
+ // This is not necessary as we manage it in a different way,
45
+ // and it also prevents false positives for our internal rule implementation.
46
+ 'eslint-plugin/require-meta-docs-url' : 'off' ,
44
47
// Repo rule
45
48
'no-restricted-imports' : [
46
49
'error' ,
Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ export default {
10
10
description : 'enforce to use FindVariableContext to avoid infinite recursion' ,
11
11
category : 'Best Practices' ,
12
12
recommended : false ,
13
- conflictWithPrettier : false ,
14
- url : 'https://github.com/sveltejs/eslint-plugin-svelte/blob/v3.12.3/docs/rules/prefer-find-variable-safe.md'
13
+ conflictWithPrettier : false
15
14
} ,
16
15
messages : {
17
16
preferFindVariableSafe : 'Prefer to use FindVariableContext to avoid infinite recursion.'
You can’t perform that action at this time.
0 commit comments