We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea50a45 commit 6fc0e0bCopy full SHA for 6fc0e0b
src/utils/path-utils.ts
@@ -12,7 +12,8 @@ import {
12
* Get the base configuration directory for a scope
13
*/
14
export function getBaseConfigDir(scope: ConfigScope): string {
15
- return scope === 'global' ? GLOBAL_CONFIG_DIR : PROJECT_CONFIG_DIR;
+ const dir = scope === 'global' ? GLOBAL_CONFIG_DIR : PROJECT_CONFIG_DIR;
16
+ return normalizePath(dir);
17
}
18
19
/**
0 commit comments