Skip to content

Commit

Permalink
fix: change eslint errors to warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
Roboromeo1 committed Jul 30, 2021
1 parent c93d9fb commit 951adbd
Showing 1 changed file with 18 additions and 20 deletions.
38 changes: 18 additions & 20 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,24 @@
"@angular-eslint/no-empty-lifecycle-method": "warn",
"@angular-eslint/component-class-suffix":"warn",
"@angular-eslint/no-output-on-prefix":"warn",
"@angular-eslint/component-selector":"warn",
"@angular-eslint/directive-selector":"warn",
// "@angular-eslint/directive-selector": [
// "error",
// {
// "type": "attribute",
// "prefix": "df",
// "style": "camelCase"
// }
// ],
// "@angular-eslint/component-selector": [
// "error",
// {
// "type": "element",
// "prefix": "df",
// "style": "kebab-case"
// }
// ],
"@angular-eslint/directive-selector": [
"warn",
{
"type": "attribute",
"prefix": "df",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"warn",
{
"type": "element",
"prefix": "df",
"style": "kebab-case"
}
],
"quotes": [
"error",
"warn",
"single",
{
"allowTemplateLiterals": true
Expand All @@ -44,7 +42,7 @@
"extends": ["plugin:@angular-eslint/template/recommended"],
"rules": {
"max-len": [
"error",
"warn",
{
"code": 140
}
Expand Down

0 comments on commit 951adbd

Please sign in to comment.