You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports={root: true,parser: '@typescript-eslint/parser',extends: ['eslint:recommended','plugin:@typescript-eslint/recommended','plugin:@typescript-eslint/recommended-requiring-type-checking','standard','prettier'],plugins: ['svelte3','@typescript-eslint'],env: {es2021: true,browser: true},parserOptions: {ecmaVersion: 2021,sourceType: 'module',project: ['./tsconfig.eslint.json','./tsconfig.json'],extraFileExtensions: ['.svelte']},settings: {'svelte3/typescript': ()=>require('typescript')// pass the TypeScript package to the Svelte plugin},globals: {svelte: true// For `svelte.JSX` type},overrides: [{files: ['*.svelte'],processor: 'svelte3/svelte3',rules: {'import/first': 'off','import/no-duplicates': 'off','import/no-mutable-exports': 'off','import/prefer-default-export': 'off'}}]}
Thanks
The text was updated successfully, but these errors were encountered:
orblazer
changed the title
Error no-unsafe-member-access and no-unsafe-call on store in module
[typescript] Error no-unsafe-member-access and no-unsafe-call on store in module
Apr 13, 2022
orblazer
changed the title
[typescript] Error no-unsafe-member-access and no-unsafe-call on store in module
[typescript] Error no-unsafe-call on store in module
Apr 13, 2022
Hello,
I have an issue with
no-unsafe-call
rules when i want use store in module.Layout:
Page:
Eslint config:
Thanks
The text was updated successfully, but these errors were encountered: