Skip to content

Commit

Permalink
Merge pull request #157 from mlada/feature/angular-16-migration
Browse files Browse the repository at this point in the history
Feature/angular 16 migration
  • Loading branch information
mlada authored Dec 4, 2023
2 parents c8ee047 + 6596663 commit 44f84db
Show file tree
Hide file tree
Showing 73 changed files with 34,743 additions and 17,065 deletions.
47 changes: 47 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "rt",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "rt",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility"
],
"rules": {}
}
]
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ speed-measure-plugin.json
.history/*

# misc
/.angular/cache
/.sass-cache
/connect.lock
/coverage
Expand All @@ -43,4 +44,4 @@ testem.log
.DS_Store
Thumbs.db

debug.log
debug.log
Loading

0 comments on commit 44f84db

Please sign in to comment.