Skip to content
This repository has been archived by the owner on Oct 15, 2024. It is now read-only.

Commit

Permalink
feat!: drop qmllint support as it's superseded by qmlls
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Feb 10, 2023
1 parent 0617762 commit 01bbbaf
Show file tree
Hide file tree
Showing 20 changed files with 6 additions and 1,183 deletions.
21 changes: 0 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,27 +218,6 @@
"configuration": {
"title": "Qt for Python",
"properties": {
"qtForPython.qmllint.enabled": {
"type": "boolean",
"default": true,
"markdownDescription": "Enable the Qt `qmllint` integration.",
"scope": "resource"
},
"qtForPython.qmllint.path": {
"type": "string",
"default": "",
"markdownDescription": "The path to Qt `qmllint` executable. Set to empty string to automatically resolve from the installed Python package. See [here](https://github.com/seanwu1105/vscode-qt-for-python#predefined-variables) for a detailed list of predefined variables.",
"scope": "resource"
},
"qtForPython.qmllint.options": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"markdownDescription": "The options passed to Qt `qmllint` executable. See [here](https://github.com/seanwu1105/vscode-qt-for-python#predefined-variables) for a detailed list of predefined variables.",
"scope": "resource"
},
"qtForPython.qmlls.enabled": {
"type": "boolean",
"default": true,
Expand Down
1 change: 0 additions & 1 deletion python/.coveragerc
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[run]
omit =
**/test_*.py
scripts/qmllint.py
scripts/qmlls.py
scripts/rcc.py
scripts/uic.py
Expand Down
14 changes: 0 additions & 14 deletions python/scripts/qmllint.py

This file was deleted.

108 changes: 0 additions & 108 deletions python/tests/assets/qml/schema.json

This file was deleted.

112 changes: 0 additions & 112 deletions python/tests/test_qmllint.py

This file was deleted.

7 changes: 0 additions & 7 deletions src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import type { ExtensionContext, OutputChannel } from 'vscode'
import { commands, window } from 'vscode'
import { COMMANDS } from './commands'
import { EXTENSION_NAMESPACE } from './constants'
import { registerQmlLint } from './qmllint/register'
import { registerQmlLanguageServer } from './qmlls/client'
import type { ExecError, StdErrError } from './run'
import type { ErrorResult, SuccessResult } from './types'
Expand All @@ -21,12 +20,6 @@ export async function activate(context: ExtensionContext) {
onResultReceived,
})

registerQmlLint({
subscriptions: context.subscriptions,
extensionPath: context.extensionPath,
onResult: onResultReceived,
})

registerQmlLanguageServer({
subscriptions: context.subscriptions,
extensionPath: context.extensionPath,
Expand Down
58 changes: 0 additions & 58 deletions src/qmllint/code-actions.ts

This file was deleted.

Loading

0 comments on commit 01bbbaf

Please sign in to comment.