mirror of
https://github.com/mandiant/capa.git
synced 2025-12-12 15:49:46 -08:00
14 lines
360 B
JavaScript
14 lines
360 B
JavaScript
/* eslint-env node */
|
|
require("@rushstack/eslint-patch/modern-module-resolution");
|
|
|
|
module.exports = {
|
|
root: true,
|
|
extends: ["plugin:vue/vue3-essential", "eslint:recommended", "@vue/eslint-config-prettier/skip-formatting"],
|
|
parserOptions: {
|
|
ecmaVersion: "latest"
|
|
},
|
|
rules: {
|
|
"vue/multi-word-component-names": "off"
|
|
}
|
|
};
|