0

here is my eslintrc file

.eslintrc.cjs

enter image description here enter image description here With this configuration I'm getting warning for this cases

import {store} from '@js/stores/globalStores'

$store = 'abc'

warning

warning 'store' is defined but never used. Allowed unused vars must match /^_.*$/u @typescript-eslint/no-unused-vars

1

0