accountant-ui/grunt-config/htmllint.js

17 lines
440 B
JavaScript
Raw Normal View History

2016-02-01 21:56:49 +01:00
module.exports = {
frontend: {
2016-10-09 20:33:59 +02:00
options: {
'attr-name-style': 'dash',
'attr-req-value': false,
'id-class-ignore-regex': '{{.*?}}',
'id-class-style': 'dash',
'indent-style': 'spaces',
'indent-width': 2
},
src: [
'<%= accountant.frontend.src %>/*.html',
'<%= accountant.frontend.src %>/views/*.html'
]
2016-02-01 21:56:49 +01:00
}
2016-02-17 08:27:39 +01:00
};