Add csslint for frontend linting.

This commit is contained in:
Alexis Lahouze
2016-10-15 13:46:08 +02:00
parent 189d76fc22
commit 07ea908c73
3 changed files with 13 additions and 0 deletions

10
grunt-config/csslint.js Normal file
View File

@ -0,0 +1,10 @@
'use strict';
module.exports = {
frontend: {
options: {
import: 2
},
src: ['<%= accountant.frontend.src %>/css/*.css']
}
};