mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 18:32:20 +08:00
31 lines
911 B
JavaScript
31 lines
911 B
JavaScript
module.exports = grunt => {
|
|
grunt.config.merge({
|
|
csslint: {
|
|
options: {
|
|
'adjoining-classes': false,
|
|
'duplicate-background-images': false,
|
|
'box-model': false,
|
|
'box-sizing': false,
|
|
'bulletproof-font-face': false,
|
|
'compatible-vendor-prefixes': false,
|
|
'display-property-grouping': false,
|
|
'fallback-colors': false,
|
|
'font-sizes': false,
|
|
gradients: false,
|
|
ids: false,
|
|
important: false,
|
|
'known-properties': false,
|
|
'outline-none': false,
|
|
'overqualified-elements': false,
|
|
'qualified-headings': false,
|
|
'unique-headings': false,
|
|
'universal-selector': false,
|
|
'vendor-prefix': false,
|
|
'duplicate-properties': false, // doesn't place nice with mixins
|
|
},
|
|
src: ['static/**/*.css'],
|
|
},
|
|
});
|
|
|
|
grunt.loadNpmTasks('grunt-contrib-csslint');
|
|
};
|