accountant-ui/grunt-config/htmllint.js

17 lines
400 B
JavaScript
Raw Permalink Normal View History

2016-02-01 21:56:49 +01:00
module.exports = {
frontend: {
2016-02-01 22:42:31 +01:00
options: {
'attr-name-style': 'dash',
'attr-req-value': false,
'id-class-ignore-regex': '{{.*?}}',
'id-class-style': 'dash',
'indent-style': 'spaces',
'indent-width': 2
},
2016-02-01 21:56:49 +01:00
src: [
2016-02-17 09:52:13 +01:00
'<%= 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
};