notes/.eslintrc.js

10 строки
220 B
JavaScript
Исходник Обычный вид История

2019-05-22 22:40:03 +03:00
module.exports = {
extends: [
2020-02-11 20:05:50 +03:00
'@nextcloud',
2019-05-22 22:40:03 +03:00
],
rules: {
// no ending html tag on a new line (was warn in "vue/strongly-recommended")
2020-02-19 23:35:19 +03:00
'vue/html-closing-bracket-newline': ['error', { multiline: 'always' }],
2019-05-22 22:40:03 +03:00
},
}