Skip to content

Commit 7d3b171

Browse files
chore(deps-dev): bump xo from 0.53.1 to 0.54.0 (#802)
* chore(deps-dev): bump xo from 0.53.1 to 0.54.0 Bumps [xo](https://github.com/xojs/xo) from 0.53.1 to 0.54.0. - [Release notes](https://github.com/xojs/xo/releases) - [Commits](xojs/xo@v0.53.1...v0.54.0) --- updated-dependencies: - dependency-name: xo dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * fix: linting issues --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: NicolasMerget <Nicolas.Merget@deutschebahn.com>
1 parent 9410edf commit 7d3b171

File tree

18 files changed

+298
-314
lines changed

18 files changed

+298
-314
lines changed

.xo-config.cjs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ module.exports = {
3737
'@typescript-eslint/no-unsafe-assignment': 0, // We don't need this tsc will handle it anyway
3838
'@typescript-eslint/no-unsafe-call': 0, // We don't need this tsc will handle it anyway
3939
'@typescript-eslint/naming-convention': 0, // Too much trouble for different frameworks in a monorepo
40-
'@typescript-eslint/restrict-template-expressions': 0 // Legit it react
40+
'@typescript-eslint/restrict-template-expressions': 0, // Legit it ,
41+
'@typescript-eslint/no-unsafe-argument': 0 // valid for app
4142
}
4243
}
4344
],

examples/angular-example/src/app/app.module.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { NgModule } from '@angular/core';
22
import { BrowserModule } from '@angular/platform-browser';
3-
43
import { DBButtonModule } from '@db-ui/ngx-components';
54
import { AppComponent } from './app.component';
65

examples/angular-example/src/main.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { enableProdMode } from '@angular/core';
22
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
3-
43
import { AppModule } from './app/app.module';
54
import { environment } from './environments/environment';
65

output/vue/vue3/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
"noUnusedParameters": false,
1919
"outDir": "dist",
2020
"removeComments": false,
21+
"strictNullChecks": true,
2122
"sourceMap": true,
2223
"target": "esnext",
2324
"types": [],

0 commit comments

Comments
 (0)