Skip to content

Commit 3502db4

Browse files
committed
light modifications, trailing spaces and ===
1 parent 29043f6 commit 3502db4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/features/linter-provider.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export default class FortranLintingProvider {
3232
* so errorRegex can nevertheless be used to filter out errors and warnings
3333
*
3434
* see also: https://gcc.gnu.org/onlinedocs/gcc/Environment-Variables.html
35-
*/
35+
*/
3636
const env = process.env;
3737
env.LC_ALL = 'C';
38-
if (process.platform == 'win32') {
38+
if (process.platform === 'win32') {
3939
// Windows needs to know the path of other tools
4040
if (!env.Path.includes(path.dirname(command))) {
4141
env.Path = `${path.dirname(command)}${path.delimiter}${env.Path}`;

0 commit comments

Comments
 (0)