-
Notifications
You must be signed in to change notification settings - Fork 529
/
config.js
196 lines (163 loc) · 4.48 KB
/
config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
'use strict';
var equal = require('deep-equal'),
assert = require('assert'),
yaml = require('js-yaml'),
fs = require('fs'),
path = require('path'),
merge = require('merge'),
config = require('../lib/config');
var custOptions = function () {
return {
'options': {
'formatter': 'stylish',
'cache-config': false
},
'files': {
'ignore': [
'foo',
'bar'
]
},
'rules': {
'no-duplicate-properties': 0,
'indentation': [
2,
{
'size': 4
}
]
}
};
};
describe('config', function () {
it('should return the defaults if no config is passed in', function (done) {
var defaultConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, '..', 'lib', 'config', 'sass-lint.yml'), 'utf8')),
conf = config();
assert(
equal(
conf,
defaultConfig,
{
'strict': true
}
)
);
done();
});
it('should merge options when passed in', function (done) {
var defaultConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, '..', 'lib', 'config', 'sass-lint.yml'), 'utf8')),
tempOptions = custOptions(),
conf = config(tempOptions),
merged = merge.recursive(defaultConfig, tempOptions);
assert(
equal(
conf,
merged,
{
'strict': true
}
)
);
done();
});
it('should use a config file if one is provided', function (done) {
var defaultConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, '..', 'lib', 'config', 'sass-lint.yml'), 'utf8')),
tempOptions = {
'options': {
'config-file': 'tests/yml/.stylish-output.yml',
'cache-config': false
}
},
conf = config(tempOptions),
merged = merge.recursive(defaultConfig, tempOptions, yaml.safeLoad(fs.readFileSync(path.join(__dirname, 'yml', '.stylish-output.yml'), 'utf8')));
assert(
equal(
conf,
merged,
{
'strict': true
}
)
);
done();
});
it('should not merge default rules when `merge-default-rules` is false in config file [check unique]', function (done) {
var defaultConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, '..', 'lib', 'config', 'sass-lint.yml'), 'utf8')),
tempOptions = custOptions(),
conf,
merged;
conf = config(tempOptions, path.join(__dirname, 'yml', '.no-merge-default.yml'));
merged = merge.recursive(defaultConfig, tempOptions);
assert(
!equal(
conf,
merged,
{
'strict': true
}
)
);
done();
});
it('should not merge default rules when `merge-default-rules` is false in config file [check equal]', function (done) {
var customConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, 'yml', '.no-merge-default.yml'), 'utf8')),
tempOptions = custOptions(),
conf,
merged;
conf = config(tempOptions, path.join(__dirname, 'yml', '.no-merge-default.yml'));
merged = merge.recursive(customConfig, tempOptions);
assert(
equal(
conf,
merged,
{
'strict': true
}
)
);
done();
});
it('should load a cached version of the config', function (done) {
var tempOptions = {
'options': {}
},
confFirst,
confSecond;
tempOptions.options['cache-config'] = true;
// first pass at config to set the cache
confFirst = config(tempOptions);
// second pass to check if cache loads adding in a config file that shouldn't be loaded
tempOptions.options['config-file'] = 'tests/yml/.stylish-output.yml';
confSecond = config(tempOptions);
assert(
equal(
confFirst,
confSecond,
{
'strict': true
}
)
);
done();
});
it('should not merge custom option rules when `merge-default-rules` is false', function (done) {
var defaultConfig = yaml.safeLoad(fs.readFileSync(path.join(__dirname, '..', 'lib', 'config', 'sass-lint.yml'), 'utf8')),
tempOptions = custOptions(),
conf,
merged;
tempOptions.options['merge-default-rules'] = false;
conf = config(tempOptions);
merged = merge.recursive(tempOptions, defaultConfig);
merged.rules = tempOptions.rules;
assert(
equal(
conf,
merged,
{
'strict': true
}
)
);
done();
});
});