forms/.eslintrc.js

13 строки
189 B
JavaScript

module.exports = {
globals: {
appName: true,
},
extends: [
'@nextcloud',
],
rules: {
// We are using the @nextcloud/logger
'no-console': ['error', { allow: undefined }],
},
}