q9
This commit is contained in:
15
node_modules/@vue/eslint-config-prettier/skip-formatting.js
generated
vendored
Normal file
15
node_modules/@vue/eslint-config-prettier/skip-formatting.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
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",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user