We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproduction code:
class Apple { v ---> this will cause vscode to say ``Unexpected tokeneslint(ParseError)`` seeds: number }
Configuration file:
module.exports = { parser: '@typescript-eslint/parser', // add the TypeScript parser plugins: [ 'svelte3', '@typescript-eslint', // add the TypeScript plugin ], overrides: [ // this stays the same { files: ['*.svelte'], processor: 'svelte3/svelte3' }, ], rules: { 'indent': [ 'error', 'tab', {'SwitchCase': 1} ], 'linebreak-style': [ 'error', 'windows' ], 'quotes': [ 'error', 'single' ], 'semi': [ 'error', 'never' ], 'yoda': [ 'error', 'never' ], }, settings: { 'svelte3/typescript': () => require('typescript'), // pass the TypeScript package to the Svelte plugin } }
The text was updated successfully, but these errors were encountered:
Please post the whole code snippet including the <script> tag, the given snippet isn't valid if copied as is into a Svelte file
<script>
Sorry, something went wrong.
<script lang="ts"> class Apple { seeds: number } </script>
This is the minimal reproduction that causes the eslint error.
This is still an issue. Has anyone found a workaround?
No branches or pull requests
Reproduction code:
Configuration file:
The text was updated successfully, but these errors were encountered: