0

我已经在我的 Angular 项目中成功配置了 ESLint,并且我的规则对已经存在的文件强制执行。例如,我强制使用双引号。

"rules": {
 "quotes": [2, "double", { "avoidEscape": true, "allowTemplateLiterals": true }]
}

然而,当运行时,例如ng g c my-component一个组件是用单引号创建的。

import { Component, OnInit } from '@angular/core';<- 单引号

是否可以使用 ESLint 配置 Angular,以便 CLI 强制执行我在其中配置的规则.eslintrc.json

4

0 回答 0