Skip to content

Commit 37bbf4d

Browse files
authored
Fix vscode settings.json for Fypp (#386)
1 parent 2b3d35d commit 37bbf4d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.vscode/settings.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,26 @@
66
"files.exclude": {
77
"**/.git": true,
88
"**/.DS_Store": true,
9-
"**/build": true
9+
"**/build": true,
10+
"*.o": true,
11+
"*.mod": true
1012
},
1113

1214
"cmake.configureOnOpen": false,
1315

1416
"python.defaultInterpreterPath": "${workspaceFolder}/build/venv/bin/python3",
1517

18+
"files.associations": {
19+
"*.f90": "FortranFreeForm",
20+
"*.fpp": "FortranFreeForm"
21+
},
22+
1623
"fortran.preferredCase": "lowercase",
17-
"fortran.linter.includePaths": [ "${workspacefolder}/src/**" ],
24+
"fortran.linter.includePaths": [
25+
"${workspacefolder}/src/${fileDirname}",
26+
"${workspacefolder}/src/${fileDirname}/include",
27+
"${workspacefolder}/src/common",
28+
"${workspacefolder}/src/common/include"
29+
],
30+
"fortran.linter.extraArgs": ["--free-form"]
1831
}

0 commit comments

Comments
 (0)