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
# With npmnpm i -D eslint-config-prettier eslint-plugin-prettier eslint# With yarnyarn add -D eslint-config-prettier eslint-plugin-prettier eslint
Then, edit your ESLint configuration file:
{"plugins": ["prettier"],"extends": ["<some-config>","plugin:prettier/recommended"],// Add to the end of the array"rules": {"prettier/prettier":"warn",// Optionally, you can set the error level to warn },}
If you have alint-staged configuration, add an ESLint task :