Skip to content

Commit

Permalink
fix(deps): upgrade angular to v17 (#2425)
Browse files Browse the repository at this point in the history
  • Loading branch information
garrappachc authored Dec 23, 2023
1 parent 84e3ee8 commit 34ca0b4
Show file tree
Hide file tree
Showing 113 changed files with 4,989 additions and 3,681 deletions.
64 changes: 16 additions & 48 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,16 @@
{
"root": true,
"ignorePatterns": ["projects/**/*"],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"files": ["*.ts"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates",
"plugin:rxjs/recommended",
"plugin:ngrx/recommended",
"plugin:prettier/recommended"
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
],
"@angular-eslint/directive-selector": [
"error",
{
Expand All @@ -36,41 +19,26 @@
"style": "camelCase"
}
],
"@typescript-eslint/explicit-member-accessibility": [
"off",
{
"accessibility": "explicit"
}
],
"arrow-parens": [
"off",
"always"
],
"import/order": "off",
"no-underscore-dangle": [
"error",
{
"allowAfterThis": true
}
],
"ngrx/on-function-explicit-return-type": "off",
"ngrx/prefix-selectors-with-select": "off",
"prettier/prettier": [
"@angular-eslint/component-selector": [
"error",
{
"endOfLine": "auto"
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"files": ["*.html"],
"extends": [
"plugin:@angular-eslint/template/recommended"
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility"
],
"rules": {}
"rules": {
"@angular-eslint/template/click-events-have-key-events": ["off"],
"@angular-eslint/template/interactive-supports-focus": ["off"]
}
}
]
}
Loading

0 comments on commit 34ca0b4

Please sign in to comment.