Skip to content

Commit 87a80c6

Browse files
committed
Move config file to config directory
1 parent daf5284 commit 87a80c6

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

File renamed without changes.

lib/cli.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ if (!program.args.length) {
2323
program.help();
2424
}
2525

26-
var configPath = program.config || (process.cwd() + '/.csscomb.json');
26+
var configPath = program.config || (process.cwd() + '/config/csscomb.json');
2727
var comb = new Comb();
2828

2929
if (program.detect) {

test/integral.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ vow.all(['origin', 'expect'].map(function(type) {
1616
it('Process result must be equal to expect.css', function(done) {
1717
try {
1818
comb = new Comb();
19-
comb.configure(require('../.csscomb.json'));
19+
comb.configure(require('../config/csscomb.json'));
2020
assert.equal(comb.processString(results[0]), results[1]);
2121

2222
done();

0 commit comments

Comments
 (0)