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

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-02-27 17:30:04 +0300
committerdartcafe <github@dartcafe.de>2021-02-27 17:30:04 +0300
commiteaf29cd18279a39cdc3b655aad0f1e6fc122b4e5 (patch)
treee35b100d9f3563da6d7f6fc93a43ff8edab1ed4d /.eslintrc.js
parent484a5510372fb63549cd2c11254f96eddbf055a4 (diff)
removed unused props, add vue/no-unused-properties
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index e479798c..be5ac7f5 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -38,6 +38,10 @@ module.exports = {
allowModules: [],
tryExtensions: ['.js', '.vue'],
}],
+ 'vue/no-unused-properties': ['error', {
+ groups: ['props'],
+ deepData: false,
+ }],
'comma-dangle': ['error', 'always-multiline'],
// space before function ()
'space-before-function-paren': ['error', 'never'],