您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

.eslintrc.js 274B

1234567891011121314151617
  1. module.exports = {
  2. globals: {
  3. __webpack_nonce__: true,
  4. __webpack_public_path__: true,
  5. _: true,
  6. $: true,
  7. moment: true,
  8. escapeHTML: true,
  9. oc_userconfig: true,
  10. dayNames: true,
  11. firstDay: true,
  12. },
  13. extends: ['@nextcloud'],
  14. rules: {
  15. 'no-tabs': 'warn',
  16. }
  17. }