File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 6060 // Other Fortran options
6161 "fortran.preferredCase" : " lowercase" ,
6262 // Supress Git pop-up interfering with UI testing
63- "git.openRepositoryInParentFolders" : " always"
63+ "git.openRepositoryInParentFolders" : " always" ,
64+ "mesonbuild.configureOnOpen" : false
6465}
Original file line number Diff line number Diff line change @@ -78,10 +78,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
7878
7979### Fixed
8080
81+ - Fixed linter REGEX for GFortran 4.x.x
82+ ([ #813 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/813 ) )
8183- Fixed GFortran version regex to allow for semver + build metadata
8284 ([ #813 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/813 ) )
8385- Fixed broken badges and replaced them with shields.io
84- ([[ #815 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/815 )] )
86+ ([ #815 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/815 ) )
8587- Fixed regular expression for parsing version of GFortran in linter
8688 ([ #759 ] ( https://github.com/fortran-lang/vscode-fortran-support/issues/759 ) )
8789- Fixed bug where diagnostic messages would linger from the previous state
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ export class GNULinter extends Linter {
5353 constructor ( ) {
5454 super (
5555 'gfortran' ,
56- / (?: ^ (?< fname > (?: \w : \\ ) ? .* ) : (?< ln > \d + ) : (?< cn > \d + ) : (?: \s + .* \s + .* ?\s + ) (?< sev1 > E r r o r | W a r n i n g | F a t a l E r r o r ) : \s (?< msg1 > .* ) $ ) | (?: ^ (?< bin > \w + ) : \s * (?< sev2 > \w + \s * \w * ) : \s * (?< msg2 > .* ) $ ) / gm,
56+ / (?: ^ (?< fname > (?: \w : \\ ) ? .* ) : (?< ln > \d + ) : (?< cn > \d + ) [: . ] (?: \s + .* \s + .* ?\s + ) (?< sev1 > E r r o r | W a r n i n g | F a t a l E r r o r ) : \s (?< msg1 > .* ) $ ) | (?: ^ (?< bin > \w + ) : \s * (?< sev2 > \w + \s * \w * ) : \s * (?< msg2 > .* ) $ ) / gm,
5757 {
5858 errors : [ 'error' , 'fatal error' ] ,
5959 warnings : [ 'warning' ] ,
You can’t perform that action at this time.
0 commit comments