I’m attempting to add semicolon at end of each line. I’m using prettier and eslint.
This is my prettier.config.js
config:
module.exports = {
plugins: [require('prettier-plugin-tailwindcss')],
semi: true,
};
This is the eslintrc.json
:
{
"extends": ["next/core-web-vitals", "@rocketseat/eslint-config/react"],
"rules": {
"semi": [2, "always"]
}
}
I keep getting this erro, and on save, it does not add the semicolon: