@itcase/lint 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/stylelint/index.js +1 -7
package/package.json
CHANGED
package/stylelint/index.js
CHANGED
|
@@ -71,12 +71,6 @@ export default {
|
|
|
71
71
|
ignoreTypes: ['/^/'],
|
|
72
72
|
},
|
|
73
73
|
],
|
|
74
|
-
'function-no-unknown': [
|
|
75
|
-
true,
|
|
76
|
-
{
|
|
77
|
-
ignoreFunctions: ['fluid'],
|
|
78
|
-
},
|
|
79
|
-
],
|
|
80
74
|
'shorthand-property-no-redundant-values': null,
|
|
81
75
|
'order/order': [
|
|
82
76
|
[
|
|
@@ -201,7 +195,7 @@ export default {
|
|
|
201
195
|
'^([a-z]+)([A-Z]?[a-z]+)+$',
|
|
202
196
|
{ message: 'Expected keyframe name to be camelCase' },
|
|
203
197
|
],
|
|
204
|
-
'function-no-unknown': [true, { ignoreFunctions: ['$'] }],
|
|
198
|
+
'function-no-unknown': [true, { ignoreFunctions: ['$', 'fluid'] }],
|
|
205
199
|
'at-rule-no-unknown': [
|
|
206
200
|
true,
|
|
207
201
|
{
|