diff options
author | John Molakvoæ <skjnldsv@protonmail.com> | 2023-01-04 19:06:52 +0100 |
---|---|---|
committer | John Molakvoæ <skjnldsv@protonmail.com> | 2023-01-17 18:30:41 +0100 |
commit | b9906fb21e9f1aadf14e473b8c26a2ec7537fa11 (patch) | |
tree | 3b068eb999c675760d715e78da2d5eee8668cb44 /.eslintrc.js | |
parent | 9af7ee8d11b43a7a3d14f7aa8390aff0a4174f55 (diff) | |
download | nextcloud-server-b9906fb21e9f1aadf14e473b8c26a2ec7537fa11.tar.gz nextcloud-server-b9906fb21e9f1aadf14e473b8c26a2ec7537fa11.zip |
feat(files): Quota in navigation
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Diffstat (limited to '.eslintrc.js')
-rw-r--r-- | .eslintrc.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/.eslintrc.js b/.eslintrc.js index f4333f93d21..812fec4c009 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -8,8 +8,15 @@ module.exports = { oc_userconfig: true, dayNames: true, firstDay: true, + 'cypress/globals': true, }, - extends: ['@nextcloud'], + plugins: [ + 'cypress', + ], + extends: [ + '@nextcloud', + 'plugin:cypress/recommended', + ], rules: { 'no-tabs': 'warn', // TODO: make sure we fix this as this is bad vue coding style. |