Can ESLint be set up with Prettier to enforce the max-len / printWidth rule but without making it mandatory? In other words, is it possible to allow line breaks to be added as needed?
// eslintrc.js
"max-len": [0, 160, 2, { ignoreUrls: true }],
// prettier.config.js
module.exports = {
trailingComma: "all",
tabWidth: 2,
semi: true,
singleQuote: false,
printWidth: 160,
};