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:03:36 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-10-26 21:10:58 +0200
commitd0c43eb872685988ed9979788f6d143c931f4512 (patch)
tree74ae6d6d176beddb57ad65510690a94dbd6da657 /.qmllint.ini
parentMore qml cleanups (diff)
downloadnheko-d0c43eb872685988ed9979788f6d143c931f4512.tar.xz
Add basic qml linter config
Diffstat (limited to '.qmllint.ini')
-rw-r--r--.qmllint.ini67
1 files changed, 67 insertions, 0 deletions
diff --git a/.qmllint.ini b/.qmllint.ini
new file mode 100644
index 00000000..4781a741
--- /dev/null
+++ b/.qmllint.ini
@@ -0,0 +1,67 @@
+[General]
+AdditionalQmlImportPaths=
+DisableDefaultImports=false
+DisablePlugins=
+OverwriteImportTypes=
+ResourcePath=
+
+[Warnings]
+#AccessSingletonViaObject=warning
+#AttachedPropertyReuse=disable
+#BadSignalHandlerParameters=warning
+#CompilerWarnings=disable
+#Deprecated=warning
+#DuplicatePropertyBinding=warning
+#DuplicatedName=warning
+#ImportFailure=warning
+#IncompatibleType=warning
+#InheritanceCycle=warning
+#InvalidLintDirective=warning
+#LintPluginWarnings=disable
+#MissingProperty=warning
+#MissingType=warning
+#MultilineStrings=info
+#NonListProperty=warning
+#PrefixedImportType=warning
+#PropertyAliasCycles=warning
+#ReadOnlyProperty=warning
+#RequiredProperty=warning
+#RestrictedType=warning
+#TopLevelComponent=warning
+#UncreatableType=warning
+#UnqualifiedAccess=warning
+#UnresolvedType=warning
+#UnusedImports=info
+#UseProperFunction=warning
+#VarUsedBeforeDeclaration=warning
+#WithStatement=warning
+
+AccessSingletonViaObject=disable
+AttachedPropertyReuse=disable
+BadSignalHandlerParameters=disable
+CompilerWarnings=disable
+Deprecated=disable
+DuplicatePropertyBinding=disable
+DuplicatedName=disable
+ImportFailure=disable
+IncompatibleType=disable
+InheritanceCycle=disable
+InvalidLintDirective=disable
+LintPluginWarnings=disable
+MissingProperty=disable
+MissingType=disable
+MultilineStrings=info
+NonListProperty=disable
+PrefixedImportType=disable
+PropertyAliasCycles=disable
+ReadOnlyProperty=disable
+RequiredProperty=disable
+RestrictedType=disable
+TopLevelComponent=disable
+UncreatableType=disable
+UnqualifiedAccess=disable
+UnresolvedType=disable
+UnusedImports=info
+UseProperFunction=disable
+VarUsedBeforeDeclaration=disable
+WithStatement=disable