You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
546 B
16 lines
546 B
1 month ago
|
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",
|
||
|
},
|
||
|
};
|