зеркало из https://github.com/nextcloud/forms.git
26 строки
475 B
JSON
26 строки
475 B
JSON
{
|
|
"globals": {
|
|
"appName": true
|
|
},
|
|
"extends": [
|
|
"@nextcloud",
|
|
"prettier" // < this needs to be the last one to override all previous
|
|
],
|
|
"rules": {
|
|
// We are using the @nextcloud/logger
|
|
"no-console": "error",
|
|
"import/no-unresolved": ["error", { "ignore": ["\\?raw"] }]
|
|
},
|
|
"overrides": [
|
|
{
|
|
"files": ["**/*.vue"],
|
|
"rules": {
|
|
"vue/first-attribute-linebreak": [
|
|
"error",
|
|
{ "multiline": "below", "singleline": "ignore" }
|
|
]
|
|
}
|
|
}
|
|
]
|
|
}
|