Skip to content

Commit

Permalink
Update dependencies.
Browse files Browse the repository at this point in the history
Update dependencies.
  • Loading branch information
carlkuesters authored Nov 6, 2023
1 parent 7d07aa2 commit 22d7286
Show file tree
Hide file tree
Showing 15 changed files with 14,267 additions and 7,961 deletions.
53 changes: 53 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
{
"root": true,
"ignorePatterns": [
"projects/**/*"
],
"overrides": [
{
"files": [
"*.ts"
],
"parserOptions": {
"project": [
"tsconfig.json",
"e2e/tsconfig.json"
],
"createDefaultProgram": true
},
"extends": [
"plugin:@angular-eslint/recommended",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/component-selector": [
"error",
{
"prefix": "ds",
"style": "kebab-case",
"type": "element"
}
],
"@angular-eslint/directive-selector": [
"error",
{
"prefix": "ds",
"style": "camelCase",
"type": "attribute"
}
]
}
},
{
"files": [
"*.html"
],
"extends": [
"plugin:@angular-eslint/template/recommended"
],
"rules": {
"@angular-eslint/template/no-negated-async": "off"
}
}
]
}
17 changes: 13 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@
},
{
"type": "anyComponentStyle",
"maximumWarning": "50kb",
"maximumError": "100kb"
"maximumWarning": "100kb",
"maximumError": "200kb"
}
]
}
Expand All @@ -90,6 +90,15 @@
"browserTarget": "destrostudios-launcher:build"
}
},
"lint": {
"builder": "@angular-eslint/builder:lint",
"options": {
"lintFilePatterns": [
"src/**/*.ts",
"src/**/*.html"
]
}
},
"test": {
"builder": "@angular-devkit/build-angular:karma",
"options": {
Expand Down Expand Up @@ -120,6 +129,6 @@
}
}
}
}},
"defaultProject": "destrostudios-launcher"
}
}
}
2 changes: 1 addition & 1 deletion karma.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ module.exports = function (config) {
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['Chrome'],
browsers: ['ChromeHeadless'],
singleRun: false,
restartOnFileChange: true
});
Expand Down
Loading

0 comments on commit 22d7286

Please sign in to comment.