linthis 0.0.10__py3-none-win_amd64.whl → 0.0.12__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
Binary file
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: linthis
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.12
|
|
4
4
|
Classifier: Development Status :: 3 - Alpha
|
|
5
5
|
Classifier: Environment :: Console
|
|
6
6
|
Classifier: Intended Audience :: Developers
|
|
@@ -582,6 +582,120 @@ All modifications preserve TOML file format and comments.
|
|
|
582
582
|
| Lua | luacheck | stylua |
|
|
583
583
|
| Dart | dart analyze | dart format |
|
|
584
584
|
|
|
585
|
+
## Editor Plugins
|
|
586
|
+
|
|
587
|
+
linthis provides official plugins for popular editors, offering seamless integration with format-on-save, manual lint/format commands, and configurable settings.
|
|
588
|
+
|
|
589
|
+
### VSCode
|
|
590
|
+
|
|
591
|
+
Install from [VS Marketplace](https://marketplace.visualstudio.com/items?itemName=zhlinh.linthis) or search "linthis" in VSCode Extensions.
|
|
592
|
+
|
|
593
|
+
**Features:**
|
|
594
|
+
- Format on Save (configurable)
|
|
595
|
+
- Manual Lint/Format commands via Command Palette
|
|
596
|
+
- Configurable executable path and additional arguments
|
|
597
|
+
- Status bar integration
|
|
598
|
+
|
|
599
|
+
**Installation via Command Palette:**
|
|
600
|
+
```
|
|
601
|
+
ext install zhlinh.linthis
|
|
602
|
+
```
|
|
603
|
+
|
|
604
|
+
**Configuration (settings.json):**
|
|
605
|
+
```json
|
|
606
|
+
{
|
|
607
|
+
"linthis.formatOnSave": true,
|
|
608
|
+
"linthis.executable.path": "",
|
|
609
|
+
"linthis.executable.additionalArguments": ""
|
|
610
|
+
}
|
|
611
|
+
```
|
|
612
|
+
|
|
613
|
+
📁 Source: [vscode-linthis](./vscode-linthis/)
|
|
614
|
+
|
|
615
|
+
### JetBrains (IntelliJ IDEA, WebStorm, PyCharm, etc.)
|
|
616
|
+
|
|
617
|
+
Install from [JetBrains Marketplace](https://plugins.jetbrains.com/plugin/XXXXX-linthis) or search "linthis" in IDE Settings → Plugins.
|
|
618
|
+
|
|
619
|
+
**Features:**
|
|
620
|
+
- Format on Save (configurable)
|
|
621
|
+
- Manual Lint/Format via Tools menu
|
|
622
|
+
- Configurable executable path and additional arguments
|
|
623
|
+
- Settings UI in Preferences → Tools → Linthis
|
|
624
|
+
|
|
625
|
+
**Installation:**
|
|
626
|
+
1. Open Settings/Preferences → Plugins
|
|
627
|
+
2. Search for "linthis"
|
|
628
|
+
3. Click Install and restart IDE
|
|
629
|
+
|
|
630
|
+
**Configuration:**
|
|
631
|
+
- Settings → Tools → Linthis
|
|
632
|
+
- Enable/disable Format on Save
|
|
633
|
+
- Set custom executable path
|
|
634
|
+
- Add additional command-line arguments
|
|
635
|
+
|
|
636
|
+
📁 Source: [jetbrains-linthis](./jetbrains-linthis/)
|
|
637
|
+
|
|
638
|
+
### Neovim
|
|
639
|
+
|
|
640
|
+
Install using your favorite plugin manager. Distributed via GitHub.
|
|
641
|
+
|
|
642
|
+
#### lazy.nvim (Recommended)
|
|
643
|
+
|
|
644
|
+
```lua
|
|
645
|
+
-- For monorepo (plugin in subdirectory)
|
|
646
|
+
{
|
|
647
|
+
"zhlinh/linthis",
|
|
648
|
+
subdir = "nvim-linthis",
|
|
649
|
+
config = function()
|
|
650
|
+
require("linthis").setup()
|
|
651
|
+
end,
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
-- For standalone repository
|
|
655
|
+
{
|
|
656
|
+
"zhlinh/nvim-linthis",
|
|
657
|
+
config = function()
|
|
658
|
+
require("linthis").setup()
|
|
659
|
+
end,
|
|
660
|
+
}
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
#### packer.nvim
|
|
664
|
+
|
|
665
|
+
```lua
|
|
666
|
+
-- For monorepo
|
|
667
|
+
use {
|
|
668
|
+
"zhlinh/linthis",
|
|
669
|
+
rtp = "nvim-linthis",
|
|
670
|
+
config = function()
|
|
671
|
+
require("linthis").setup()
|
|
672
|
+
end,
|
|
673
|
+
}
|
|
674
|
+
```
|
|
675
|
+
|
|
676
|
+
#### vim-plug
|
|
677
|
+
|
|
678
|
+
```vim
|
|
679
|
+
" For monorepo
|
|
680
|
+
Plug 'zhlinh/linthis', { 'rtp': 'nvim-linthis' }
|
|
681
|
+
```
|
|
682
|
+
|
|
683
|
+
**Features:**
|
|
684
|
+
- Format on Save (configurable)
|
|
685
|
+
- Commands: `:LinthisLint`, `:LinthisFormat`, `:LinthisLintFormat`
|
|
686
|
+
- Configurable via `setup()` options
|
|
687
|
+
|
|
688
|
+
**Configuration:**
|
|
689
|
+
```lua
|
|
690
|
+
require("linthis").setup({
|
|
691
|
+
format_on_save = true,
|
|
692
|
+
executable = "linthis",
|
|
693
|
+
additional_args = {},
|
|
694
|
+
})
|
|
695
|
+
```
|
|
696
|
+
|
|
697
|
+
📁 Source: [nvim-linthis](./nvim-linthis/)
|
|
698
|
+
|
|
585
699
|
## Usage Scenarios
|
|
586
700
|
|
|
587
701
|
### Pre-commit Hook
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
linthis-0.0.12.data\scripts\linthis.exe,sha256=H2FT5adtqA1_eRh4tfaZqoNTAJb0iXd9IXchZ_6Aivg,10974208
|
|
2
|
+
linthis-0.0.12.dist-info\METADATA,sha256=vNH8AvqKGbCQaC2AS1LEyvwHv9FhONfdScc41yN5QS4,26255
|
|
3
|
+
linthis-0.0.12.dist-info\WHEEL,sha256=jsSEiVNsW1dJj5gDaReR40i7mhgBjWtms6nAD6EViXU,94
|
|
4
|
+
linthis-0.0.12.dist-info\RECORD,,
|
linthis-0.0.10.dist-info/RECORD
DELETED
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
linthis-0.0.10.data\scripts\linthis.exe,sha256=-Tsc4ivQeeiT-rDlsK1redft06zehK0ZPnCaBtA9ROU,10969600
|
|
2
|
-
linthis-0.0.10.dist-info\METADATA,sha256=toMpuE1AIBQQXU2T9IsiS79Ksoxfwg8xBxLinp2sRG0,23652
|
|
3
|
-
linthis-0.0.10.dist-info\WHEEL,sha256=jsSEiVNsW1dJj5gDaReR40i7mhgBjWtms6nAD6EViXU,94
|
|
4
|
-
linthis-0.0.10.dist-info\RECORD,,
|
|
File without changes
|