|
1 | 1 | { |
2 | | - "name": "linter-gfortran", |
3 | | - "displayName": "Modern Fortran", |
4 | | - "description": "Modern Fortran language support, including syntax highlighting and error detection.", |
5 | | - "version": "0.6.0", |
6 | | - "publisher": "krvajalm", |
7 | | - "engines": { |
8 | | - "vscode": "^1.10.0" |
9 | | - }, |
10 | | - "icon": "images/icon.png", |
11 | | - "repository": { |
12 | | - "type": "git", |
13 | | - "url": "https://github.com/krvajalmiguelangel/vscode-fortran-support.git" |
14 | | - }, |
15 | | - "categories": [ |
16 | | - "Languages", |
17 | | - "Snippets", |
18 | | - "Linters" |
| 2 | + "name": "linter-gfortran", |
| 3 | + "displayName": "Modern Fortran", |
| 4 | + "description": |
| 5 | + "Modern Fortran language support, including syntax highlighting and error detection.", |
| 6 | + "version": "0.6.1", |
| 7 | + "publisher": "krvajalm", |
| 8 | + "engines": { |
| 9 | + "vscode": "^1.10.0" |
| 10 | + }, |
| 11 | + "icon": "images/icon.png", |
| 12 | + "repository": { |
| 13 | + "type": "git", |
| 14 | + "url": "https://github.com/krvajalmiguelangel/vscode-fortran-support.git" |
| 15 | + }, |
| 16 | + "categories": ["Languages", "Snippets", "Linters"], |
| 17 | + "activationEvents": ["onLanguage:fortran90"], |
| 18 | + "main": "./out/src/extension", |
| 19 | + "contributes": { |
| 20 | + "languages": [ |
| 21 | + { |
| 22 | + "id": "fortran90", |
| 23 | + "aliases": ["Fortran90", "fortran90"], |
| 24 | + "extensions": [".f90", ".F90", ".f95", ".F95", ".f08", ".F08"], |
| 25 | + "configuration": "./language-configuration.json" |
| 26 | + }, |
| 27 | + { |
| 28 | + "id": "fortran", |
| 29 | + "aliases": ["Fortran ", "fortran"], |
| 30 | + "extensions": [".f", ".F", ".f77", ".F77", ".FPP"] |
| 31 | + } |
19 | 32 | ], |
20 | | - "activationEvents": [ |
21 | | - "onLanguage:fortran90" |
| 33 | + "grammars": [ |
| 34 | + { |
| 35 | + "language": "fortran90", |
| 36 | + "scopeName": "source.fortran.modern", |
| 37 | + "path": "./syntaxes/fortran90.tmLanguage" |
| 38 | + }, |
| 39 | + { |
| 40 | + "language": "fortran", |
| 41 | + "scopeName": "source.fortran", |
| 42 | + "path": "./syntaxes/fortran.tmLanguage" |
| 43 | + } |
22 | 44 | ], |
23 | | - "main": "./out/src/extension", |
24 | | - "contributes": { |
25 | | - "languages": [ |
26 | | - { |
27 | | - "id": "fortran90", |
28 | | - "aliases": [ |
29 | | - "Fortran90", |
30 | | - "fortran90" |
31 | | - ], |
32 | | - "extensions": [ |
33 | | - ".f90", |
34 | | - ".F90", |
35 | | - ".f95", |
36 | | - ".F95" |
37 | | - ], |
38 | | - "configuration": "./language-configuration.json" |
39 | | - }, |
40 | | - { |
41 | | - "id": "fortran", |
42 | | - "aliases": [ |
43 | | - "Fortran ", |
44 | | - "fortran" |
45 | | - ], |
46 | | - "extensions": [ |
47 | | - ".f", |
48 | | - ".F", |
49 | | - ".f77", |
50 | | - ".F77", |
51 | | - ".FPP" |
52 | | - ] |
53 | | - } |
54 | | - ], |
55 | | - "grammars": [ |
56 | | - { |
57 | | - "language": "fortran90", |
58 | | - "scopeName": "source.fortran.modern", |
59 | | - "path": "./syntaxes/fortran90.tmLanguage" |
60 | | - }, |
61 | | - { |
62 | | - "language": "fortran", |
63 | | - "scopeName": "source.fortran", |
64 | | - "path": "./syntaxes/fortran.tmLanguage" |
65 | | - } |
66 | | - ], |
67 | | - "snippets": [ |
68 | | - { |
69 | | - "language": "fortran90", |
70 | | - "path": "./snippets/fortran90.json" |
71 | | - } |
72 | | - ], |
73 | | - "configuration": { |
74 | | - "type": "object", |
75 | | - "title": "Fortran configuration", |
76 | | - "properties": { |
77 | | - "fortran.includePaths": { |
78 | | - "type": [ |
79 | | - "array" |
80 | | - ], |
81 | | - "items": { |
82 | | - "type": "string" |
83 | | - }, |
84 | | - "default": [], |
85 | | - "description": "Specifies folder paths to be used as include path for the Fortran linter" |
86 | | - }, |
87 | | - "fortran.gfortranExecutable": { |
88 | | - "type": "string", |
89 | | - "default": "gfortran", |
90 | | - "description": "Specifies the complete path of the gfortran executable" |
91 | | - }, |
92 | | - "fortran.linterEnabled": { |
93 | | - "type": "boolean", |
94 | | - "default": true, |
95 | | - "description": "Enables or disables the linter functionality" |
96 | | - }, |
97 | | - "fortran.linterExtraArgs": { |
98 | | - "type": [ |
99 | | - "array" |
100 | | - ], |
101 | | - "items": { |
102 | | - "type": "string" |
103 | | - }, |
104 | | - "default": [ |
105 | | - "-Wall" |
106 | | - ], |
107 | | - "description": "Specify additional options to use when calling the gfortran compiler" |
108 | | - } |
109 | | - } |
| 45 | + "snippets": [ |
| 46 | + { |
| 47 | + "language": "fortran90", |
| 48 | + "path": "./snippets/fortran90.json" |
| 49 | + } |
| 50 | + ], |
| 51 | + "configuration": { |
| 52 | + "type": "object", |
| 53 | + "title": "Fortran configuration", |
| 54 | + "properties": { |
| 55 | + "fortran.includePaths": { |
| 56 | + "type": ["array"], |
| 57 | + "items": { |
| 58 | + "type": "string" |
| 59 | + }, |
| 60 | + "default": [], |
| 61 | + "description": |
| 62 | + "Specifies folder paths to be used as include path for the Fortran linter" |
| 63 | + }, |
| 64 | + "fortran.gfortranExecutable": { |
| 65 | + "type": "string", |
| 66 | + "default": "gfortran", |
| 67 | + "description": |
| 68 | + "Specifies the complete path of the gfortran executable" |
| 69 | + }, |
| 70 | + "fortran.linterEnabled": { |
| 71 | + "type": "boolean", |
| 72 | + "default": true, |
| 73 | + "description": "Enables or disables the linter functionality" |
| 74 | + }, |
| 75 | + "fortran.linterExtraArgs": { |
| 76 | + "type": ["array"], |
| 77 | + "items": { |
| 78 | + "type": "string" |
| 79 | + }, |
| 80 | + "default": ["-Wall"], |
| 81 | + "description": |
| 82 | + "Specify additional options to use when calling the gfortran compiler" |
110 | 83 | } |
111 | | - }, |
112 | | - "scripts": { |
113 | | - "vscode:prepublish": "tsc -p ./", |
114 | | - "compile": "tsc -watch -p ./", |
115 | | - "postinstall": "node ./node_modules/vscode/bin/install", |
116 | | - "test": "node ./node_modules/vscode/bin/test", |
117 | | - "lint": "node ./node_modules/tslint/bin/tslint ./src/*.ts ./src/debugAdapter/*.ts ./test/*.ts" |
118 | | - }, |
119 | | - "devDependencies": { |
120 | | - "@types/glob": "^5.0.30", |
121 | | - "@types/fs-extra": "0.0.35", |
122 | | - "fs-extra": "^1.0.0", |
123 | | - "typescript": "^2.0.3", |
124 | | - "vscode": "^1.0.3", |
125 | | - "mocha": "^2.3.3", |
126 | | - "decache": "^4.1.0", |
127 | | - "@types/node": "^6.0.40", |
128 | | - "@types/mocha": "^2.2.32", |
129 | | - "glob": "^7.1.1", |
130 | | - "istanbul": "^0.4.5", |
131 | | - "remap-istanbul": "^0.8.4", |
132 | | - "tslint": "^4.0.2" |
| 84 | + } |
133 | 85 | } |
| 86 | + }, |
| 87 | + "scripts": { |
| 88 | + "vscode:prepublish": "tsc -p ./", |
| 89 | + "compile": "tsc -watch -p ./", |
| 90 | + "postinstall": "node ./node_modules/vscode/bin/install", |
| 91 | + "test": "node ./node_modules/vscode/bin/test", |
| 92 | + "lint": |
| 93 | + "node ./node_modules/tslint/bin/tslint ./src/*.ts ./src/debugAdapter/*.ts ./test/*.ts" |
| 94 | + }, |
| 95 | + "devDependencies": { |
| 96 | + "@types/glob": "^5.0.30", |
| 97 | + "@types/fs-extra": "0.0.35", |
| 98 | + "fs-extra": "^1.0.0", |
| 99 | + "typescript": "^2.0.3", |
| 100 | + "vscode": "^1.0.3", |
| 101 | + "mocha": "^2.3.3", |
| 102 | + "decache": "^4.1.0", |
| 103 | + "@types/node": "^6.0.40", |
| 104 | + "@types/mocha": "^2.2.32", |
| 105 | + "glob": "^7.1.1", |
| 106 | + "istanbul": "^0.4.5", |
| 107 | + "remap-istanbul": "^0.8.4", |
| 108 | + "tslint": "^4.0.2" |
| 109 | + } |
134 | 110 | } |
0 commit comments