sass-lint
Version:
All Node Sass linter!
50 lines (40 loc) • 1.37 kB
JavaScript
;
var helpers = require('../helpers');
module.exports = {
'name': 'extends-before-mixins',
'defaults': {},
'detect': function (ast, parser) {
var result = [];
ast.traverseByType('block', function (block) {
var lastMixin = null;
block.forEach(function (item, j) {
// TODO: Remove tempory fix - atrule type is work around for issue:
// https://github.com/tonyganch/gonzales-pe/issues/147
if (item.is('include') || item.is('extend') || item.is('atrule')) {
if (item.contains('atkeyword')) {
var atkeyword = item.first('atkeyword');
if (atkeyword.contains('ident')) {
var ident = atkeyword.first('ident');
if (ident.content === 'extend') {
if (j > lastMixin && lastMixin !== null) {
result = helpers.addUnique(result, {
'ruleId': parser.rule.name,
'line': item.start.line,
'column': item.start.column,
'message': 'Extends should come before mixins',
'severity': parser.severity
});
}
}
}
}
}
if (item.is('include')) {
lastMixin = j;
}
});
lastMixin = null;
});
return result;
}
};