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

Commit

Permalink
feat(qmllint): support .qmllint.ini file
Browse files Browse the repository at this point in the history
  • Loading branch information
seanwu1105 committed Aug 18, 2022
1 parent 90a6a8f commit 056478c
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,12 @@

## Next Release TODOs

- [ ] `qmllint` integration
- [x] `qmllint` integration
- [x] `qmllint` language server
- [ ] Support ini file
- [x] Support `.qmllint.ini` file
- [x] Show errors on notification
- [x] Handle exceptions from Python scripts
- [x] Drop support to install Python dependencies
- [ ] Auto bump Python project version
- [ ] Support multi-root projects
- [ ] Support spaces in paths
- [ ] Unit tests for ALL TypeScript scripts
Expand Down
7 changes: 7 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,5 +97,12 @@
"Linters",
"Formatters",
"Other"
],
"keywords": [
"multi-root ready",
"QML",
"PySide",
"PyQt",
"Qt"
]
}
23 changes: 23 additions & 0 deletions python/tests/assets/.qmllint.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
[General]
AdditionalQmlImportPaths=
DisableDefaultImports=false
OverwriteImportTypes=
ResourcePath=

[Warnings]
AttachedPropertyReuse=disable
BadSignalHandler=warning
CompilerWarnings=disable
ControlsSanity=disable
DeferredPropertyId=warning
Deprecated=warning
ImportFailure=warning
InheritanceCycle=warning
MultilineStrings=info
PropertyAlias=warning
RequiredProperty=warning
TypeError=warning
UnknownProperty=warning
UnqualifiedAccess=warning
UnusedImports=info
WithStatement=warning

0 comments on commit 056478c

Please sign in to comment.