Description
Since no-navigation-without-resolve is now in recommended (thx to #1308) it's triggering some discussions in different places.
In sv -> sveltejs/cli#702
About tutorial -> #1308 (comment)
Here 1 -> #1327
Here 2 -> #1319
Maybe, at the moment, the default config is a bit too aggressive.
What do you think about relaxing it a bit like:
{
"svelte/no-navigation-without-resolve": [
"error",
{
"ignoreGoto": false,
- "ignoreLinks": false,
+ "ignoreLinks": true,
"ignorePushState": false,
"ignoreReplaceState": false
}
]
}
Let me know
Description
Since
no-navigation-without-resolveis now in recommended (thx to #1308) it's triggering some discussions in different places.In
sv-> sveltejs/cli#702About tutorial -> #1308 (comment)
Here 1 -> #1327
Here 2 -> #1319
Maybe, at the moment, the default config is a bit too aggressive.
What do you think about relaxing it a bit like:
{ "svelte/no-navigation-without-resolve": [ "error", { "ignoreGoto": false, - "ignoreLinks": false, + "ignoreLinks": true, "ignorePushState": false, "ignoreReplaceState": false } ] }Let me know