Skip to content
Permalink
Browse files Browse the repository at this point in the history
Set the scope to the configuration properties
The configuration properties' scope define which level of configuration can override the settings.
The default is window which meams that workspace configuration can override them.
  • Loading branch information
Gimly committed Mar 23, 2021
1 parent 0b325f6 commit fc5dc53
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions package.json
Expand Up @@ -65,26 +65,31 @@
"matlab.matlabpath": {
"type": "string",
"default": null,
"scope": "machine",
"description": "The path to the matlab executable."
},
"matlab.mlintpath": {
"type": "string",
"default": null,
"scope": "machine",
"description": "The path to the mlint executable"
},
"matlab.lintOnSave": {
"type": "boolean",
"default": true,
"scope": "window",
"description": "Run the linting on save of file."
},
"matlab.linterEncoding": {
"type": "string",
"default": "utf8",
"scope": "window",
"description": "This sets the encoding for the linting, default is utf8. Use if your console uses a different encoding."
},
"matlab.linterConfig": {
"type": "string",
"default": null,
"scope": "machine",
"description": "This allows to pass a configuration settings file for the mlint linter. Enter the full path for the linter settings file to use."
}
}
Expand Down

0 comments on commit fc5dc53

Please sign in to comment.