You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.eslintrc.js 273B

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. }