Configuration
全局配置
get
参数说明
参数名称 |
参数类型 |
描述 |
section |
String |
配置项的key |
defaultValue |
Any |
默认值,当key不存在时返回该值 |
返回值
示例
let eslintConfig = hx.workspace.getConfiguration("eslint-js")
let validateOnDocumentChanged = eslintConfig.get("validateOnDocumentChanged",false);
update
参数说明
参数名称 |
参数类型 |
描述 |
section |
String |
配置项的key |
value |
Any |
配置项的值 |
返回值
返回类型 |
描述 |
Promise<void> |
Promise |
示例
let eslintConfig = hx.workspace.getConfiguration("eslint-js")
eslintConfig.update("validateOnDocumentChanged",true).then(()=>{
console.log("更新配置成功。");
});