Examples in README imports typescript-eslint parser with an old format:
import tsParser from "@typescript-eslint/parser";
To keep it consistent with eslint-plugin-svelte, it would be better to replace it with import ts from "typescript-eslint"; and ts.parser.
Examples in README imports typescript-eslint parser with an old format:
To keep it consistent with eslint-plugin-svelte, it would be better to replace it with
import ts from "typescript-eslint";andts.parser.