diff options
| author | williambotman[bot] <107473453+williambotman@users.noreply.github.com> | 2022-11-15 11:03:08 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-15 10:03:08 +0000 |
| commit | 6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1 (patch) | |
| tree | a4444ebe80cf27981c651eca1fb6b434d02d862a | |
| parent | fix(spectral-language-server): link spectral-language-server executable (#666) (diff) | |
| download | mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar.gz mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar.bz2 mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar.lz mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar.xz mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.tar.zst mason-6dbeebe20aa9d1261dbee86779f7fc3c6f2ef8f1.zip | |
chore: update generated code (#667)
| -rw-r--r-- | PACKAGES.md | 21 | ||||
| -rw-r--r-- | lua/mason-schemas/lsp/spectral-language-server.lua | 3 |
2 files changed, 24 insertions, 0 deletions
diff --git a/PACKAGES.md b/PACKAGES.md index 8988190d..745b0787 100644 --- a/PACKAGES.md +++ b/PACKAGES.md @@ -178,6 +178,7 @@ - [reason-language-server](#reason-language-server) - [remark-cli](#remark-cli) - [remark-language-server](#remark-language-server) +- [reorder-python-imports](#reorder-python-imports) - [rescript-lsp](#rescript-lsp) - [revive](#revive) - [rnix-lsp](#rnix-lsp) @@ -3829,6 +3830,25 @@ Categories: `LSP` ``` +# reorder-python-imports + +> Tool for automatically reordering python imports. Similar to isort but uses static analysis more. + +Homepage: [https://github.com/asottile/reorder_python_imports](https://github.com/asottile/reorder_python_imports) +Languages: `Python` +Categories: `Formatter` + +<details> + <summary>History:</summary> + +- [`7ebd92b`](https://github.com/williamboman/mason.nvim/commit/7ebd92b) 2022-11-14 - feat(registry): add reorder-python-imports ([#665](https://github.com/williamboman/mason.nvim/issues/665)) by Phúc Lê Khắc +</details> + +``` +:MasonInstall reorder-python-imports +``` + + # rescript-lsp > Language Server for ReScript. @@ -4367,6 +4387,7 @@ Categories: `LSP` <details> <summary>History:</summary> +- [`30a9451`](https://github.com/williamboman/mason.nvim/commit/30a9451) 2022-11-15 - fix(spectral-language-server): link spectral-language-server executable ([#666](https://github.com/williamboman/mason.nvim/issues/666)) by William Boman - [`e0268a6`](https://github.com/williamboman/mason.nvim/commit/e0268a6) 2022-09-26 - fix(spectral-language-server): build directly from source ([#464](https://github.com/williamboman/mason.nvim/issues/464)) by William Boman - [`3f4071f`](https://github.com/williamboman/mason.nvim/commit/3f4071f) 2022-08-07 - chore: reformat long descriptions ([#264](https://github.com/williamboman/mason.nvim/issues/264)) by William Boman - [`eee851f`](https://github.com/williamboman/mason.nvim/commit/eee851f) 2022-08-01 - fix(spectral-language-server): remove Linter and add LSP to categories ([#219](https://github.com/williamboman/mason.nvim/issues/219)) by William Boman diff --git a/lua/mason-schemas/lsp/spectral-language-server.lua b/lua/mason-schemas/lsp/spectral-language-server.lua new file mode 100644 index 00000000..65d5322e --- /dev/null +++ b/lua/mason-schemas/lsp/spectral-language-server.lua @@ -0,0 +1,3 @@ +-- THIS FILE IS GENERATED. DO NOT EDIT MANUALLY. +-- stylua: ignore start +return {properties = {["spectral.enable"] = {default = true,description = "Controls whether or not Spectral is enabled.",scope = "resource",type = "boolean"},["spectral.rulesetFile"] = {description = "Location of the ruleset file to use when validating. If omitted, the default is a .spectral.yml/.spectral.json in the same folder as the document being validated. Paths are relative to the workspace. This can also be a remote HTTP url.",scope = "resource",type = "string"},["spectral.run"] = {default = "onType",description = "Run the linter on save (onSave) or as you type (onType).",enum = { "onSave", "onType" },scope = "resource",type = "string"},["spectral.trace.server"] = {default = "off",description = "Traces the communication between VS Code and the language server.",enum = { "off", "messages", "verbose" },scope = "window",type = "string"},["spectral.validateFiles"] = {description = "An array of file globs (e.g., `**/*.yaml`) in minimatch glob format which should be validated by Spectral. If language identifiers are also specified, the file must match both in order to be validated. You can also use negative file globs (e.g., `!**/package.json`) here to exclude files.",items = {type = "string"},scope = "resource",type = "array"},["spectral.validateLanguages"] = {default = { "json", "yaml" },description = "An array of language IDs which should be validated by Spectral. If file globs are also specified, the file must match both in order to be validated.",items = {type = "string"},scope = "resource",type = "array"}},title = "Spectral",type = "object"}
\ No newline at end of file |
