Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormarco <marcoambrosini@pm.me>2021-08-31 15:35:06 +0300
committermarco <marcoambrosini@pm.me>2021-08-31 15:35:06 +0300
commit5f20110113f42bcdd3c196ddaf96cba6183241e2 (patch)
treef6b17ed8120f3766faf962708c3159916f78d943 /.eslintrc.js
parent1674b09dfc0d6196d1aa14137f999fbe5b6b673f (diff)
Fix remaining warnings
Signed-off-by: marco <marcoambrosini@pm.me>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js16
1 files changed, 8 insertions, 8 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index bdeb502d9..2d21344cf 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,13 +1,13 @@
module.exports = {
extends: [
- '@nextcloud'
+ '@nextcloud',
],
overrides: [
{
- 'files': ['**/*.spec.js'],
- 'rules': {
- 'node/no-unpublished-import': 0
- }
- }
- ]
-} \ No newline at end of file
+ files: ['**/*.spec.js'],
+ rules: {
+ 'node/no-unpublished-import': 0,
+ },
+ },
+ ],
+}