aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/data/used.qml
Commit message (Collapse)AuthorAgeFilesLines
* add "double" into the list of built in QML typesEvgeniy A. Dushistov2021-04-141-0/+1
| | | | | | | | | Also this fixed "property type checking" for qmllint in case of QML code like "property double xyz" Fixes: QTBUG-92566 Change-Id: Ice33be4287ce0eba2cf9dfaabb760406bdca02b7 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* Check also property type namesEvgeniy A. Dushistov2021-04-131-0/+4
| | | | | | | | | | At the moment, qmllint only check the types of objects and classes being imported, it totally ignored types of properties that should be also imported. Fixes: QTBUG-92449 Change-Id: Ia5173bed84640d93fc48f6239179604ceb5db2cd Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
* qmllint: Add support for warning about unused importsMaximilian Goldstein2021-03-251-0/+12
qmllint will now show an information line pointing out import statements that are not needed. It will not warn about imports that are redundant however, since there are legitimate reasons for having these. Fixes: QTBUG-83237 Change-Id: I9588b5fa8a8efd37b48c9b349a448e580efb1452 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>