In vscode I use eslint for linting and prettier for formatting vanilla javascript, but after having fixed things that eslint flags I go to save and then prettier reformats back to what eslint was complaining about.
40:6 error There must be a space after this paren space-in-parens
40:20 error There must be a space before this paren space-in-parens
42:5 error Strings must use singlequote quotes
45:2 error There must be a space before this paren space-in-parens
✖ 61 problems (61 errors, 0 warnings)
61 errors and 0 warnings potentially fixable with the `--fix` option.
Should I configure eslint to work according to prettiers rules or vice versa?