mirror of
https://github.com/MetaProvide/nextcloud-swarm-plugin.git
synced 2025-01-11 13:48:58 +00:00
14 lines
235 B
JavaScript
Executable file
14 lines
235 B
JavaScript
Executable file
module.exports = {
|
|
extends: ["@nextcloud", "prettier"],
|
|
rules: {
|
|
semi: [2, "always"],
|
|
"no-console": "off",
|
|
"vue/first-attribute-linebreak": [
|
|
"error",
|
|
{
|
|
singleline: "ignore",
|
|
multiline: "below",
|
|
},
|
|
],
|
|
},
|
|
};
|