File tree Expand file tree Collapse file tree 1 file changed +30
-10
lines changed Expand file tree Collapse file tree 1 file changed +30
-10
lines changed Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " linter-gfortran " ,
2
+ "name" : " fortran " ,
3
3
"displayName" : " Modern Fortran" ,
4
4
"description" : " Modern Fortran language support, including syntax highlighting and error detection." ,
5
5
"version" : " 0.4.5" ,
22
22
],
23
23
"main" : " ./out/src/extension" ,
24
24
"contributes" : {
25
- "languages" : [
26
- {
25
+ "languages" : [{
27
26
"id" : " fortran90" ,
28
27
"aliases" : [
29
28
" Fortran90" ,
52
51
]
53
52
}
54
53
],
55
- "grammars" : [
56
- {
54
+ "grammars" : [{
57
55
"language" : " fortran90" ,
58
56
"scopeName" : " source.fortran.modern" ,
59
57
"path" : " ./syntaxes/fortran90.tmLanguage"
64
62
"path" : " ./syntaxes/fortran.tmLanguage"
65
63
}
66
64
],
67
- "snippets" : [
68
- {
69
- "language" : " fortran90" ,
70
- "path" : " ./snippets/fortran90.json"
65
+ "snippets" : [{
66
+ "language" : " fortran90" ,
67
+ "path" : " ./snippets/fortran90.json"
68
+ }],
69
+ "configuration" : {
70
+ "type" : " object" ,
71
+ "title" : " Fortran configuration" ,
72
+ "properties" : {
73
+ "fortran.includePaths" : {
74
+ "type" : [" array" ],
75
+ "items" : {
76
+ "type" : " string"
77
+ },
78
+ "default" : [],
79
+ "description" : " Specifies folder paths to be used as include path for the Fortran linter"
80
+ },
81
+ "fortran.gfortraExecutable" : {
82
+ "type" : " string" ,
83
+ "default" : " gfortran" ,
84
+ "description" : " Specifies the complete path of the gfortran executable"
85
+ },
86
+ "fortran.linterEnabled" : {
87
+ "type" : " boolean" ,
88
+ "default" : true ,
89
+ "description" : " Enables or disables the linter functionality"
90
+ }
71
91
}
72
- ]
92
+ }
73
93
},
74
94
"scripts" : {
75
95
"vscode:prepublish" : " tsc -p ./" ,
You can’t perform that action at this time.
0 commit comments