我能够在 *.js 文件上运行 eslint。但是,它似乎不支持车把文件。
我在网上做了一些搜索,发现了 Ember-Template-Lint。但是,我无法弄清楚如何更改自动修复块缩进。是否可以自动修复 Ember 把手文件上的所有块缩进错误?
1.) 我在 .template-lintrc.js 中使用什么规则(参见下面的代码)?
2.) 我从终端运行什么命令来修复任何/所有 *.hbs 文件?
https://github.com/ember-template-lint/ember-template-lint
.template-lintrc.js
'use strict';
module.exports = {
extends: 'recommended',
rules: {
'no-html-comments': false,
'no-bare-strings': false
}
};
呼如林
相关分类