Skip to content

Commit 6f43bc4

Browse files
Auto-generate configuration by YAML changed.
1 parent c9bc146 commit 6f43bc4

File tree

1 file changed

+182
-1
lines changed

1 file changed

+182
-1
lines changed

etc/generate/config_data.py

Lines changed: 182 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@
1919
"multi_line_end": "\"\"\""
2020
},
2121
"shell_style": {
22-
"single_line": "#"
22+
"single_line": "#",
23+
"multi_line_start": None,
24+
"multi_line_end": None
2325
},
2426
"perl_style": {
2527
"single_line": "#",
@@ -170,6 +172,16 @@
170172
"single_line": "//",
171173
"multi_line_start": "(*",
172174
"multi_line_end": "*)"
175+
},
176+
"vhdl_style": {
177+
"single_line": "--",
178+
"multi_line_start": None,
179+
"multi_line_end": None
180+
},
181+
"tex_style": {
182+
"single_line": "%",
183+
"multi_line_start": None,
184+
"multi_line_end": None
173185
}
174186
},
175187
"languages": [
@@ -746,6 +758,175 @@
746758
".fs"
747759
],
748760
"comment_styles": "fsharp_style"
761+
},
762+
{
763+
"name": "Jupyter Notebook",
764+
"extension": [
765+
".ipynb"
766+
],
767+
"comment_styles": "no_comment"
768+
},
769+
{
770+
"name": "VHDL",
771+
"extension": [
772+
".vhd"
773+
],
774+
"comment_styles": "vhdl_style"
775+
},
776+
{
777+
"name": "Fish Script",
778+
"extension": [
779+
".fish"
780+
],
781+
"comment_styles": "shell_style"
782+
},
783+
{
784+
"name": "Tex",
785+
"extension": [
786+
".tex"
787+
],
788+
"comment_styles": "tex_style"
789+
},
790+
{
791+
"name": "KornShell",
792+
"extension": [
793+
".ksh"
794+
],
795+
"comment_styles": "shell_style"
796+
},
797+
{
798+
"name": "Zsh",
799+
"extension": [
800+
".zsh"
801+
],
802+
"comment_styles": "shell_style"
803+
},
804+
{
805+
"name": "Dockerfile",
806+
"extension": [
807+
"Dockerfile"
808+
],
809+
"comment_styles": "shell_style"
810+
},
811+
{
812+
"name": "Apple Script",
813+
"extension": [
814+
".applescript"
815+
],
816+
"comment_styles": "c_style"
817+
},
818+
{
819+
"name": "Unreal Script",
820+
"extension": [
821+
".uc"
822+
],
823+
"comment_styles": "c_style"
824+
},
825+
{
826+
"name": "ASP.NET",
827+
"extension": [
828+
".asp"
829+
],
830+
"comment_styles": "html_style"
831+
},
832+
{
833+
"name": "ASPX",
834+
"extension": [
835+
".aspx"
836+
],
837+
"comment_styles": "html_style"
838+
},
839+
{
840+
"name": "GLSL",
841+
"extension": [
842+
".glsl"
843+
],
844+
"comment_styles": "c_style"
845+
},
846+
{
847+
"name": "Cg",
848+
"extension": [
849+
".cg"
850+
],
851+
"comment_styles": "c_style"
852+
},
853+
{
854+
"name": "HLSL",
855+
"extension": [
856+
".hlsl"
857+
],
858+
"comment_styles": "c_style"
859+
},
860+
{
861+
"name": "OpenCL",
862+
"extension": [
863+
".cl"
864+
],
865+
"comment_styles": "c_style"
866+
},
867+
{
868+
"name": "CUDA",
869+
"extension": [
870+
".cu"
871+
],
872+
"comment_styles": "c_style"
873+
},
874+
{
875+
"name": "GraphQL",
876+
"extension": [
877+
".gql",
878+
".graphql"
879+
],
880+
"comment_styles": "shell_style"
881+
},
882+
{
883+
"name": "Apache Config",
884+
"extension": [
885+
".htaccess"
886+
],
887+
"comment_styles": "shell_style"
888+
},
889+
{
890+
"name": "TOML",
891+
"extension": [
892+
".toml"
893+
],
894+
"comment_styles": "shell_style"
895+
},
896+
{
897+
"name": "Jinja2 Template",
898+
"extension": [
899+
".j2"
900+
],
901+
"comment_styles": "no_comment"
902+
},
903+
{
904+
"name": "GameMarker Studio",
905+
"extension": [
906+
".gml"
907+
],
908+
"comment_styles": "c_style"
909+
},
910+
{
911+
"name": "Brainfuck",
912+
"extension": [
913+
".bf"
914+
],
915+
"comment_styles": "no_comment"
916+
},
917+
{
918+
"name": "Chef",
919+
"extension": [
920+
".chef"
921+
],
922+
"comment_styles": "no_comment"
923+
},
924+
{
925+
"name": "APL",
926+
"extension": [
927+
".apl"
928+
],
929+
"comment_styles": "no_comment"
749930
}
750931
]
751932
}

0 commit comments

Comments
 (0)