ember-template-lint
Version:
Linter for Ember or Handlebars templates.
14 lines (13 loc) • 369 B
JavaScript
export default {
rules: {
'block-indentation': 'error',
'eol-last': ['error', 'editorconfig'],
'linebreak-style': 'error',
'modifier-name-case': 'error',
'no-multiple-empty-lines': 'error',
'no-trailing-spaces': 'error',
'no-unnecessary-concat': 'error',
quotes: ['error', 'double'],
'self-closing-void-elements': 'error',
},
};