diff options
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. |