My VSCode is configured with prettier and ESLint settings to make the development easy.
But I am not sure which rule is affecting my JSX class names. Ideally, the class name should be: test-wrapper
<i className={style.test-wrapper} />
But its getting changed to below on save and causing lot of issues:
<i className={style.test - wrapper} />
May i know which rule i should override or modify?