Skip to content

Commit

Permalink
Merge pull request #225 from SebastianRzk/dev
Browse files Browse the repository at this point in the history
add kategorien management + angular 17 update
  • Loading branch information
SebastianRzk authored Jan 27, 2024
2 parents 9d45cbe + a69ab3d commit 77be6cf
Show file tree
Hide file tree
Showing 46 changed files with 6,161 additions and 3,951 deletions.
47 changes: 47 additions & 0 deletions butler_online/budgetbutler/.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": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended",
"plugin:@angular-eslint/template/accessibility"
],
"rules": {}
}
]
}
19 changes: 8 additions & 11 deletions butler_online/budgetbutler/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,18 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "budgetbutler:build"
"buildTarget": "budgetbutler:build"
},
"configurations": {
"production": {
"browserTarget": "budgetbutler:build:production"
"buildTarget": "budgetbutler:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "budgetbutler:build"
"buildTarget": "budgetbutler:build"
}
},
"test": {
Expand All @@ -97,14 +97,11 @@
}
},
"lint": {
"builder": "@angular-devkit/build-angular:tslint",
"builder": "@angular-eslint/builder:lint",
"options": {
"tsConfig": [
"src/tsconfig.app.json",
"src/tsconfig.spec.json"
],
"exclude": [
"**/node_modules/**"
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
}
Expand Down Expand Up @@ -142,4 +139,4 @@
"cli": {
"analytics": false
}
}
}
Loading

0 comments on commit 77be6cf

Please sign in to comment.