Skip to content

Commit 75536b8

Browse files
Add PRQL
PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement. https://prql-lang.org/ https://github.com/PRQL/prql
1 parent 8513b92 commit 75536b8

File tree

1 file changed

+47
-0
lines changed

1 file changed

+47
-0
lines changed

languages.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5652,6 +5652,53 @@
56525652
"python3"
56535653
]
56545654
},
5655+
"PRQL": {
5656+
"complexitychecks": [
5657+
"case ",
5658+
"&& ",
5659+
"|| ",
5660+
"!= ",
5661+
"== ",
5662+
"~= "
5663+
],
5664+
"extensions": [
5665+
"prql"
5666+
],
5667+
"line_comment": [
5668+
"#"
5669+
],
5670+
"multi_line": [],
5671+
"quotes": [
5672+
{
5673+
"end": "\"",
5674+
"start": "\""
5675+
},
5676+
{
5677+
"end": "'",
5678+
"start": "'"
5679+
},
5680+
{
5681+
"docString": true,
5682+
"end": "\"\"\"",
5683+
"start": "\"\"\""
5684+
},
5685+
{
5686+
"docString": true,
5687+
"end": "'''",
5688+
"start": "'''"
5689+
},
5690+
{
5691+
"docString": true,
5692+
"end": "\"\"\"",
5693+
"start": "r\"\"\""
5694+
},
5695+
{
5696+
"docString": true,
5697+
"end": "'''",
5698+
"start": "r'''"
5699+
}
5700+
]
5701+
},
56555702
"Q#": {
56565703
"complexitychecks": [
56575704
"for ",

0 commit comments

Comments
 (0)