Skip to content

Commit

Permalink
feat: Register new download limit entry
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Mar 6, 2024
1 parent c6440c6 commit 514020b
Show file tree
Hide file tree
Showing 11 changed files with 22,916 additions and 13,167 deletions.
37 changes: 35 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,40 @@
module.exports = {
globals: {
appName: true,
appVersion: true,
},
extends: ['@nextcloud'],
ignorePatterns: [
'node_modules/',
'js/',
'lib/'
],
extends: [
'@nextcloud/eslint-config/typescript'
],
rules: {
'func-call-spacing': 'off',
'@typescript-eslint/func-call-spacing': 'error',
'no-unused-expressions': 0,
},
overrides: [
{
files: [
'./*.config.*',
'**/*.spec.*',
'**/*.test.*'
],
rules: {
'n/no-unpublished-import': [
'off'
]
}
},
{
files: [
'**/*.vue'
],
rules: {
'n/no-missing-import': 'off'
}
}
]
}
Loading

0 comments on commit 514020b

Please sign in to comment.