Skip to content

Commit

Permalink
feat: doc and support list update
Browse files Browse the repository at this point in the history
  • Loading branch information
creativenull committed Nov 20, 2023
1 parent 75e303b commit 1d94c55
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 4 deletions.
51 changes: 49 additions & 2 deletions doc/SUPPORTED_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ check the docs: [`:help efmls-configs-defaults`](../README.md#default-configurat
| Ruby | `reek` | |
| VIM | `vint` | |
| Blade | | `blade_formatter` |
| Proto | `buf` | `buf` |

## Languages

Expand Down Expand Up @@ -289,6 +290,12 @@ local joker = require('efmls-configs.linters.joker')

#### Formatters

`cljstyle` [https://github.com/greglook/cljstyle](https://github.com/greglook/cljstyle)

```lua
local cljstyle = require('efmls-configs.formatters.cljstyle')
```

`joker` [https://github.com/candid82/joker](https://github.com/candid82/joker)

```lua
Expand Down Expand Up @@ -421,6 +428,16 @@ local dartfmt = require('efmls-configs.formatters.dartfmt')
local hadolint = require('efmls-configs.linters.hadolint')
```

### Fennel

#### Formatters

`fnlfmt` [https://git.sr.ht/~technomancy/fnlfmt](https://git.sr.ht/~technomancy/fnlfmt)

```lua
local fnlfmt = require('efmls-configs.formatters.fnlfmt')
```

### Fish

#### Linters
Expand Down Expand Up @@ -963,8 +980,22 @@ local pint = require('efmls-configs.formatters.pint')

### Proto

#### Linters

`buf` [https://github.com/bufbuild/buf](https://github.com/bufbuild/buf)

```lua
local buf = require('efmls-configs.linters.buf')
```

#### Formatters

`buf` [https://github.com/bufbuild/buf](https://github.com/bufbuild/buf)

```lua
local buf = require('efmls-configs.formatters.buf')
```

`protolint` [https://github.com/yoheimuta/protolint](https://github.com/yoheimuta/protolint)

```lua
Expand Down Expand Up @@ -999,6 +1030,12 @@ local mypy = require('efmls-configs.linters.mypy')
local pylint = require('efmls-configs.linters.pylint')
```

`ruff` [https://github.com/astral-sh/ruff](https://github.com/astral-sh/ruff)

```lua
local ruff = require('efmls-configs.linters.ruff')
```

`vulture` [https://github.com/jendrikseipp/vulture](https://github.com/jendrikseipp/vulture)

```lua
Expand Down Expand Up @@ -1235,6 +1272,16 @@ local solhint = require('efmls-configs.linters.solhint')
local forge_fmt = require('efmls-configs.formatters.forge_fmt')
```

### Sql

#### Formatters

`sql-formatter` [https://github.com/sql-formatter-org/sql-formatter](https://github.com/sql-formatter-org/sql-formatter)

```lua
local sql-formatter = require('efmls-configs.formatters.sql-formatter')
```

### Terraform

#### Formatters
Expand Down Expand Up @@ -1373,10 +1420,10 @@ local xo = require('efmls-configs.formatters.xo')

#### Formatters

`typstfmt` [https://github.com/astrale-sharp/typstfmt](https://github.com/astrale-sharp/typstfmt)
`typst` [https://github.com/astrale-sharp/typstfmt](https://github.com/astrale-sharp/typstfmt)

```lua
local typstfmt = require('efmls-configs.formatters.typstfmt')
local typst = require('efmls-configs.formatters.typst')
```

### Vala
Expand Down
38 changes: 36 additions & 2 deletions doc/supported-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@
}
],
"formatters": [
{
"name": "cljstyle",
"url": "https://github.com/greglook/cljstyle"
},
{
"name": "joker",
"url": "https://github.com/candid82/joker"
Expand Down Expand Up @@ -245,6 +249,14 @@
}
]
},
"fennel": {
"formatters": [
{
"name": "fnlfmt",
"url": "https://git.sr.ht/~technomancy/fnlfmt"
}
]
},
"fish": {
"linters": [
{
Expand Down Expand Up @@ -678,7 +690,17 @@
]
},
"proto": {
"linters": [
{
"name": "buf",
"url": "https://github.com/bufbuild/buf"
}
],
"formatters": [
{
"name": "buf",
"url": "https://github.com/bufbuild/buf"
},
{
"name": "protolint",
"url": "https://github.com/yoheimuta/protolint"
Expand All @@ -703,6 +725,10 @@
"name": "pylint",
"url": "https://www.pylint.org/"
},
{
"name": "ruff",
"url": "https://github.com/astral-sh/ruff"
},
{
"name": "vulture",
"url": "https://github.com/jendrikseipp/vulture"
Expand Down Expand Up @@ -879,6 +905,14 @@
}
]
},
"sql": {
"formatters": [
{
"name": "sql-formatter",
"url": "https://github.com/sql-formatter-org/sql-formatter"
}
]
},
"terraform": {
"formatters": [
{
Expand Down Expand Up @@ -978,7 +1012,7 @@
"typst": {
"formatters": [
{
"name": "typstfmt",
"name": "typst",
"url": "https://github.com/astrale-sharp/typstfmt"
}
]
Expand Down Expand Up @@ -1033,4 +1067,4 @@
}
]
}
}
}

0 comments on commit 1d94c55

Please sign in to comment.