Skip to content

Commit 270898f

Browse files
committed
1.3.0
1 parent 45fa511 commit 270898f

File tree

2 files changed

+58
-24
lines changed

2 files changed

+58
-24
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 57 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
{
22
"name": "linter-gfortran",
33
"displayName": "Modern Fortran",
4-
"description":
5-
"Modern Fortran language support, including syntax highlighting and error detection.",
6-
"version": "1.2.0",
4+
"description": "Modern Fortran language support, including syntax highlighting and error detection.",
5+
"version": "1.3.0",
76
"publisher": "krvajalm",
87
"engines": {
98
"vscode": "^1.19.0"
@@ -13,21 +12,47 @@
1312
"type": "git",
1413
"url": "https://github.com/krvajalmiguelangel/vscode-fortran-support.git"
1514
},
16-
"categories": ["Programming Languages", "Snippets", "Linters"],
17-
"activationEvents": ["onLanguage:FortranFreeForm"],
15+
"categories": [
16+
"Programming Languages",
17+
"Snippets",
18+
"Linters"
19+
],
20+
"activationEvents": [
21+
"onLanguage:FortranFreeForm"
22+
],
1823
"main": "./out/src/extension",
1924
"contributes": {
2025
"languages": [
2126
{
2227
"id": "FortranFreeForm",
23-
"aliases": ["Fortran90", "fortran90"],
24-
"extensions": [".f90", ".F90", ".f95", ".F95", ".f08", ".F08"],
28+
"aliases": [
29+
"Fortran90",
30+
"fortran90"
31+
],
32+
"extensions": [
33+
".f90",
34+
".F90",
35+
".f95",
36+
".F95",
37+
".f08",
38+
".F08"
39+
],
2540
"configuration": "./language-configuration.json"
2641
},
2742
{
2843
"id": "fortran_fixed-form",
29-
"aliases": ["Fortran ", "fortran", "FORTRAN77"],
30-
"extensions": [".f", ".F", ".f77", ".F77", ".FPP"]
44+
"aliases": [
45+
"Fortran ",
46+
"fortran",
47+
"FORTRAN77"
48+
],
49+
"extensions": [
50+
".f",
51+
".F",
52+
".f77",
53+
".F77",
54+
".FPP"
55+
]
3156
}
3257
],
3358
"grammars": [
@@ -39,7 +64,9 @@
3964
{
4065
"scopeName": "source.openmp",
4166
"path": "./syntaxes/openmp_lang.json",
42-
"injectTo": ["source.fortran.free"]
67+
"injectTo": [
68+
"source.fortran.free"
69+
]
4370
},
4471
{
4572
"language": "fortran_fixed-form",
@@ -58,42 +85,49 @@
5885
"title": "Fortran configuration",
5986
"properties": {
6087
"fortran.includePaths": {
61-
"type": ["array"],
88+
"type": [
89+
"array"
90+
],
6291
"items": {
6392
"type": "string"
6493
},
6594
"default": [],
66-
"description":
67-
"Specifies folder paths to be used as include path for the Fortran linter"
95+
"description": "Specifies folder paths to be used as include path for the Fortran linter"
6896
},
6997
"fortran.gfortranExecutable": {
7098
"type": "string",
7199
"default": "gfortran",
72-
"description":
73-
"Specifies the complete path of the gfortran executable"
100+
"description": "Specifies the complete path of the gfortran executable"
74101
},
75102
"fortran.linterEnabled": {
76103
"type": "boolean",
77104
"default": true,
78105
"description": "Enables or disables the linter functionality"
79106
},
80107
"fortran.linterExtraArgs": {
81-
"type": ["array"],
108+
"type": [
109+
"array"
110+
],
82111
"items": {
83112
"type": "string"
84113
},
85-
"default": ["-Wall"],
86-
"description":
87-
"Specify additional options to use when calling the gfortran compiler"
114+
"default": [
115+
"-Wall"
116+
],
117+
"description": "Specify additional options to use when calling the gfortran compiler"
88118
},
89119
"fortran.symbols": {
90-
"type": ["array"],
120+
"type": [
121+
"array"
122+
],
91123
"items": {
92124
"type": "string"
93125
},
94-
"default": ["function", "subroutine"],
95-
"description":
96-
"Specify what kind of symbols should be shown by the symbols' provider"
126+
"default": [
127+
"function",
128+
"subroutine"
129+
],
130+
"description": "Specify what kind of symbols should be shown by the symbols' provider"
97131
}
98132
}
99133
}

0 commit comments

Comments
 (0)