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 efa3d8d commit ecfc41eCopy full SHA for ecfc41e
lib/csscomb.js
@@ -247,7 +247,7 @@ CSScomb.getCustomConfigPath = function getCustomConfigPath(configPath) {
247
configPath = configPath || path.join(process.cwd(), '.csscomb.json');
248
249
// If we've finally found a config, return its path:
250
- if (fs.existsSync(configPath)) return configPath;
+ if (fs.existsSync(configPath)) return fs.realpathSync(configPath);
251
252
// If we are in HOME dir already and yet no config file, return a default
253
// one from our package.
0 commit comments