boilerplate-gulp-angular-sass
Version:
Boilerplate gulp tasks for angular packages with SASS
25 lines (18 loc) • 679 B
JavaScript
module.exports = {
// Additional paths to look for `@import`'ed LESS files.
includePath: [],
// Complains if not strict property order
strictPropertyOrder: true,
// Doesn't complain about using IDs in your stylesheets
noIDs: true,
// Doesn't complain about styling .js- prefixed classnames
noJSPrefix: true,
// Doesn't complain about overqualified selectors (ie: div#foo.bar)
noOverqualifying: true,
// Doesn't complain about using underscores in your class names
noUnderscores: true,
// Doesn't complain about using the universal * selector
noUniversalSelectors: true,
// Doesn't complain if you add units to values of 0
zeroUnits: true
};