Skip to content

Commit

Permalink
feat(doc): typst to typstfmt, sqlfluff
Browse files Browse the repository at this point in the history
  • Loading branch information
creativenull committed Nov 29, 2023
1 parent f628a60 commit ff84e04
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 3 deletions.
12 changes: 10 additions & 2 deletions doc/SUPPORTED_LIST.md
Original file line number Diff line number Diff line change
Expand Up @@ -1274,6 +1274,14 @@ local forge_fmt = require('efmls-configs.formatters.forge_fmt')

### Sql

#### Linters

`sqlfluff` [https://github.com/sqlfluff/sqlfluff](https://github.com/sqlfluff/sqlfluff)

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

#### Formatters

`sql-formatter` [https://github.com/sql-formatter-org/sql-formatter](https://github.com/sql-formatter-org/sql-formatter)
Expand Down Expand Up @@ -1420,10 +1428,10 @@ local xo = require('efmls-configs.formatters.xo')

#### Formatters

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

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

### Vala
Expand Down
8 changes: 7 additions & 1 deletion doc/supported-list.json
Original file line number Diff line number Diff line change
Expand Up @@ -906,6 +906,12 @@
]
},
"sql": {
"linters": [
{
"name": "sqlfluff",
"url": "https://github.com/sqlfluff/sqlfluff"
}
],
"formatters": [
{
"name": "sql-formatter",
Expand Down Expand Up @@ -1012,7 +1018,7 @@
"typst": {
"formatters": [
{
"name": "typst",
"name": "typstfmt",
"url": "https://github.com/astrale-sharp/typstfmt"
}
]
Expand Down

0 comments on commit ff84e04

Please sign in to comment.