Version: 3.0.0-alpha.13.0.0-alpha.23.0.0-alpha.33.0.0-alpha.43.0.0-alpha.53.0.0-alpha.63.0.0-alpha.73.0.0-alpha.83.0.0-alpha.93.0.0-alpha.103.0.0-alpha.113.0.0-alpha.123.0.0-alpha.133.0.0-beta.13.0.0-beta.23.0.0-beta.33.0.0-beta.43.0.0-beta.53.0.0-beta.63.0.0-beta.73.0.0-beta.83.0.0-beta.93.0.0-beta.103.0.0-beta.113.0.0-beta.123.0.0-beta.133.0.0-beta.143.0.0-beta.153.0.0-beta.163.0.0-rc.13.0.0-rc.23.0.0-rc.33.0.0-rc.43.0.0-rc.53.0.0-rc.63.0.0-rc.73.0.0-rc.83.0.0-rc.93.0.0-rc.103.0.0-rc.113.0.0-rc.123.0.03.0.13.0.23.0.33.0.43.0.54.0.04.0.15.0.05.1.06.0.07.0.07.1.08.0.09.0.010.0.0-rc.010.0.0-rc.110.0.0-rc.210.0.0-rc.310.0.010.1.010.2.0
const eslintConfigPrettier = require("eslint-config-prettier");
// Note that we are not extending from the recommended config.
// Because that would be an overkill:
// - since we are not formatting, the plugin isn't needed;
// - and without the `prettier/prettier` rule, we don't have to disable the conflicting `arrow-body-style` and `prefer-arrow-callback` rules.
/** @type {import('eslint').Linter.Config} */
module.exports = {
...eslintConfigPrettier,
rules: {
...eslintConfigPrettier.rules,
"prettier/prettier": "off",
},
};