2021-11-18 17:44:47 +01:00
|
|
|
module.exports = {
|
|
|
|
extends: [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:cypress/recommended",
|
2022-03-22 15:39:39 +01:00
|
|
|
"plugin:vue/recommended",
|
|
|
|
"prettier"
|
2021-11-18 17:44:47 +01:00
|
|
|
],
|
|
|
|
rules: {
|
|
|
|
"vue/attributes-order": "error",
|
2022-03-22 15:39:39 +01:00
|
|
|
"vue/component-definition-name-casing": "off",
|
2021-11-18 17:44:47 +01:00
|
|
|
"vue/html-closing-bracket-newline": [
|
|
|
|
"error",
|
|
|
|
{
|
2022-03-22 15:39:39 +01:00
|
|
|
singleline: "never",
|
|
|
|
multiline: "always"
|
2021-11-18 17:44:47 +01:00
|
|
|
}
|
2022-03-22 15:39:39 +01:00
|
|
|
],
|
|
|
|
"vue/multi-word-component-names": "off",
|
|
|
|
"vue/require-default-prop": "off",
|
|
|
|
"vue/require-prop-types": "error"
|
2021-11-18 17:44:47 +01:00
|
|
|
}
|
2022-03-22 15:39:39 +01:00
|
|
|
};
|