webappengine
Version:
A web application platform that can host multiple web apps running with Node.js.
41 lines (40 loc) • 1.34 kB
JavaScript
//
// https://github.com/CSSLint/csslint/wiki/Rules
//
module.exports = {
'important': false,
'adjoining-classes': false,
'known-properties': true,
'box-sizing': false,
'box-model': false,
'overqualified-elements': false,
'display-property-grouping': true, // https://github.com/CSSLint/csslint/wiki/Require-properties-appropriate-for-display
'bulletproof-font-face': false,
'compatible-vendor-prefixes': false,
'regex-selectors': false,
'errors': true,
'duplicate-background-images': false,
'duplicate-properties': false,
'empty-rules': false,
'selector-max-approaching': false,
'gradients': false,
'fallback-colors': false,
'font-sizes': false,
'font-faces': false,
'floats': false,
'star-property-hack': false,
'outline-none': false,
'import': false,
'ids': false,
'underscore-property-hack': false,
'rules-count': false,
'qualified-headings': false, // https://github.com/CSSLint/csslint/wiki/Disallow-qualified-headings
'selector-max': false,
'shorthand': true,
'text-indent': true,
'unique-headings': false, // https://github.com/CSSLint/csslint/wiki/Headings-should-only-be-defined-once
'universal-selector': false,
'unqualified-attributes': false,
'vendor-prefix': false,
'zero-units': true
};