my code contains :
/** @jsx jsx */
import { jsx, css } from '@emotion/core';
but eslint has error : Unused import { jsx, css } from '@emotion/core'
.
how can I remove this error from my files? and I add this rule to my eslintrc.js
file but it doesn't help:
rules: {
'@typescript-eslint/no-unused-vars': 'off',
}
thank you for your help!