(v: string)
| 326 | } |
| 327 | |
| 328 | setEslintConfig(v: string) { |
| 329 | if (v === "") { |
| 330 | this._set("eslint_config", defaultConfig); |
| 331 | return; |
| 332 | } |
| 333 | JSON.parse(v); |
| 334 | return this._set("eslint_config", v); |
| 335 | } |
| 336 | |
| 337 | getEditorConfig() { |
| 338 | return this._get<string>("editor_config", editorDefaultConfig); |