summary refs log tree commit diff
path: root/.qmllint.ini
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-10-26 21:43:05 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-10-26 21:48:55 +0200
commit6fef6ad5f1c7138ebe0bc07174ad28a62c493231 (patch)
treef81d637f22f81dd58808cc50d6200b08797657bb /.qmllint.ini
parentAdd basic qml linter config (diff)
downloadnheko-6fef6ad5f1c7138ebe0bc07174ad28a62c493231.tar.xz
Enable even more qml linter warnings
Diffstat (limited to '.qmllint.ini')
-rw-r--r--.qmllint.ini41
1 files changed, 21 insertions, 20 deletions
diff --git a/.qmllint.ini b/.qmllint.ini
index 4781a741..387b5163 100644
--- a/.qmllint.ini
+++ b/.qmllint.ini
@@ -36,32 +36,33 @@ ResourcePath=
 #VarUsedBeforeDeclaration=warning
 #WithStatement=warning
 
-AccessSingletonViaObject=disable
-AttachedPropertyReuse=disable
+AccessSingletonViaObject=warning
+AttachedPropertyReuse=warning
+# https://bugreports.qt.io/browse/QTBUG-115439 -> set to disabled until Qt6.7
 BadSignalHandlerParameters=disable
 CompilerWarnings=disable
-Deprecated=disable
-DuplicatePropertyBinding=disable
-DuplicatedName=disable
+Deprecated=warning
+DuplicatePropertyBinding=warning
+DuplicatedName=warning
 ImportFailure=disable
-IncompatibleType=disable
-InheritanceCycle=disable
-InvalidLintDirective=disable
-LintPluginWarnings=disable
+IncompatibleType=warning
+InheritanceCycle=warning
+InvalidLintDirective=warning
+LintPluginWarnings=warning
 MissingProperty=disable
 MissingType=disable
-MultilineStrings=info
-NonListProperty=disable
-PrefixedImportType=disable
+MultilineStrings=warning
+NonListProperty=warning
+PrefixedImportType=warning
 PropertyAliasCycles=disable
-ReadOnlyProperty=disable
-RequiredProperty=disable
-RestrictedType=disable
-TopLevelComponent=disable
-UncreatableType=disable
+ReadOnlyProperty=warning
+RequiredProperty=warning
+RestrictedType=warning
+TopLevelComponent=warning
+UncreatableType=warning
 UnqualifiedAccess=disable
 UnresolvedType=disable
 UnusedImports=info
-UseProperFunction=disable
-VarUsedBeforeDeclaration=disable
-WithStatement=disable
+UseProperFunction=warning
+VarUsedBeforeDeclaration=warning
+WithStatement=warning