chore(cr): newline at end of file + eslint enforcement

pull/399/head
Kobi Meirson 2022-10-20 15:27:17 +03:00
parent 35c3a656c6
commit cf71d2bd0a
No known key found for this signature in database
GPG Key ID: 5D66F732B037CDE1
2 changed files with 2 additions and 1 deletions

View File

@ -30,6 +30,7 @@ module.exports = {
'vue/html-self-closing': 0, 'vue/html-self-closing': 0,
'vue/multi-word-component-names': 0, 'vue/multi-word-component-names': 0,
'vue/no-reserved-component-names': 0, 'vue/no-reserved-component-names': 0,
'eol-last': ['error', 'always'],
}, },
globals: { globals: {
'describe': true, 'describe': true,

View File

@ -27,4 +27,4 @@ THE SOFTWARE.
export const accessLogParamsDefault = 'buffer=512k flush=1m'; export const accessLogParamsDefault = 'buffer=512k flush=1m';
export const errorLogLevelDefault = 'warn'; export const errorLogLevelDefault = 'warn';
export const errorLogLevelOptions = Object.freeze(['debug', 'info', 'notice', 'warn', 'error', 'crit', 'alert', 'emerg']); export const errorLogLevelOptions = Object.freeze(['debug', 'info', 'notice', 'warn', 'error', 'crit', 'alert', 'emerg']);