This warning category is spelled [invalid-lint-directive] by qmllint.
You used an invalid qmllint directive in a qmllint comment. This is probably due to a typo.
The qmllint directive has no effect.
import QtQuick
Item {
// qmllint diasble with
}To fix this warning, correct the typo:
import QtQuick
Item {
// qmllint disable with
}You used an unknown category in a qmllint directive inside a qmllint comment. This is probably due to a typo.
The qmllint directive has no effect.
import QtQuick
Item {
// qmllint disable woth
}To fix this warning, correct the typo:
import QtQuick
Item {
// qmllint disable with
}
© The Qt Company Ltd
Licensed under the GNU Free Documentation License, Version 1.3.
https://doc.qt.io/qt-6.9/qmllint-warnings-and-errors-invalid-lint-directive.html