Skip to content

Commit

Permalink
Fix vscode settings.json for Fypp (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
henryleberre authored Apr 6, 2024
1 parent 2b3d35d commit 37bbf4d
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,26 @@
"files.exclude": {
"**/.git": true,
"**/.DS_Store": true,
"**/build": true
"**/build": true,
"*.o": true,
"*.mod": true
},

"cmake.configureOnOpen": false,

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

"files.associations": {
"*.f90": "FortranFreeForm",
"*.fpp": "FortranFreeForm"
},

"fortran.preferredCase": "lowercase",
"fortran.linter.includePaths": [ "${workspacefolder}/src/**" ],
"fortran.linter.includePaths": [
"${workspacefolder}/src/${fileDirname}",
"${workspacefolder}/src/${fileDirname}/include",
"${workspacefolder}/src/common",
"${workspacefolder}/src/common/include"
],
"fortran.linter.extraArgs": ["--free-form"]
}

0 comments on commit 37bbf4d

Please sign in to comment.