GetConfigPath returns the config file path for the current workspace.
()
| 184 | |
| 185 | // GetConfigPath returns the config file path for the current workspace. |
| 186 | func GetConfigPath() string { |
| 187 | return filepath.Join(GetConfigDir(), "config.json") |
| 188 | } |
| 189 | |
| 190 | // ErrMalformedConfig marks a config-load failure caused by malformed file |
| 191 | // content (unparseable JSON, structurally empty) rather than a missing or |