Skip to content

Commit

Permalink
feat(doc): deno_fmt, prettypst, swiftlint, swiftformat
Browse files Browse the repository at this point in the history
  • Loading branch information
creativenull committed Jan 10, 2024
1 parent 69db779 commit 5372981
Show file tree
Hide file tree
Showing 2 changed files with 98 additions and 0 deletions.
56 changes: 56 additions & 0 deletions doc/SUPPORTED_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -624,6 +624,12 @@ local xo = require('efmls-configs.linters.xo')
local biome = require('efmls-configs.formatters.biome')
```

`deno_fmt` [https://docs.deno.com/runtime/manual/tools/formatter](https://docs.deno.com/runtime/manual/tools/formatter)

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

`dprint` [https://dprint.dev/](https://dprint.dev/)

```lua
Expand Down Expand Up @@ -690,6 +696,16 @@ local rome = require('efmls-configs.formatters.rome')
local xo = require('efmls-configs.formatters.xo')
```

### Javascriptreact

#### Formatters

`deno_fmt` [https://docs.deno.com/runtime/manual/tools/formatter](https://docs.deno.com/runtime/manual/tools/formatter)

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

### Json

#### Linters
Expand Down Expand Up @@ -1290,6 +1306,24 @@ local sqlfluff = require('efmls-configs.linters.sqlfluff')
local sql-formatter = require('efmls-configs.formatters.sql-formatter')
```

### Swift

#### Linters

`swiftlint` [https://github.com/realm/SwiftLint](https://github.com/realm/SwiftLint)

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

#### Formatters

`swiftformat` [https://github.com/nicklockwood/SwiftFormat](https://github.com/nicklockwood/SwiftFormat)

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

### Terraform

#### Formatters
Expand Down Expand Up @@ -1364,6 +1398,12 @@ local xo = require('efmls-configs.linters.xo')
local biome = require('efmls-configs.formatters.biome')
```

`deno_fmt` [https://docs.deno.com/runtime/manual/tools/formatter](https://docs.deno.com/runtime/manual/tools/formatter)

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

`dprint` [https://dprint.dev/](https://dprint.dev/)

```lua
Expand Down Expand Up @@ -1424,10 +1464,26 @@ local rome = require('efmls-configs.formatters.rome')
local xo = require('efmls-configs.formatters.xo')
```

### Typescriptreact

#### Formatters

`deno_fmt` [https://docs.deno.com/runtime/manual/tools/formatter](https://docs.deno.com/runtime/manual/tools/formatter)

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

### Typst

#### Formatters

`prettypst` [https://github.com/antonWetzel/prettypst](https://github.com/antonWetzel/prettypst)

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

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

```lua
Expand Down
42 changes: 42 additions & 0 deletions doc/supported-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,10 @@
"name": "biome",
"url": "https://biomejs.dev/"
},
{
"name": "deno_fmt",
"url": "https://docs.deno.com/runtime/manual/tools/formatter"
},
{
"name": "dprint",
"url": "https://dprint.dev/"
Expand Down Expand Up @@ -437,6 +441,14 @@
}
]
},
"javascriptreact": {
"formatters": [
{
"name": "deno_fmt",
"url": "https://docs.deno.com/runtime/manual/tools/formatter"
}
]
},
"json": {
"linters": [
{
Expand Down Expand Up @@ -919,6 +931,20 @@
}
]
},
"swift": {
"linters": [
{
"name": "swiftlint",
"url": "https://github.com/realm/SwiftLint"
}
],
"formatters": [
{
"name": "swiftformat",
"url": "https://github.com/nicklockwood/SwiftFormat"
}
]
},
"terraform": {
"formatters": [
{
Expand Down Expand Up @@ -973,6 +999,10 @@
"name": "biome",
"url": "https://biomejs.dev/"
},
{
"name": "deno_fmt",
"url": "https://docs.deno.com/runtime/manual/tools/formatter"
},
{
"name": "dprint",
"url": "https://dprint.dev/"
Expand Down Expand Up @@ -1015,8 +1045,20 @@
}
]
},
"typescriptreact": {
"formatters": [
{
"name": "deno_fmt",
"url": "https://docs.deno.com/runtime/manual/tools/formatter"
}
]
},
"typst": {
"formatters": [
{
"name": "prettypst",
"url": "https://github.com/antonWetzel/prettypst"
},
{
"name": "typstfmt",
"url": "https://github.com/astrale-sharp/typstfmt"
Expand Down

0 comments on commit 5372981

Please sign in to comment.