Skip to content

Commit

Permalink
chore(deps-dev): bump xo from 0.53.1 to 0.54.0 (#802)
Browse files Browse the repository at this point in the history
* 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] <[email protected]>

* fix: linting issues

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: NicolasMerget <[email protected]>
  • Loading branch information
dependabot[bot] and nmerget authored Apr 11, 2023
1 parent 9410edf commit 7d3b171
Show file tree
Hide file tree
Showing 18 changed files with 298 additions and 314 deletions.
3 changes: 2 additions & 1 deletion .xo-config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ module.exports = {
'@typescript-eslint/no-unsafe-assignment': 0, // We don't need this tsc will handle it anyway
'@typescript-eslint/no-unsafe-call': 0, // We don't need this tsc will handle it anyway
'@typescript-eslint/naming-convention': 0, // Too much trouble for different frameworks in a monorepo
'@typescript-eslint/restrict-template-expressions': 0 // Legit it react
'@typescript-eslint/restrict-template-expressions': 0, // Legit it ,
'@typescript-eslint/no-unsafe-argument': 0 // valid for app
}
}
],
Expand Down
1 change: 0 additions & 1 deletion examples/angular-example/src/app/app.module.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';

import { DBButtonModule } from '@db-ui/ngx-components';
import { AppComponent } from './app.component';

Expand Down
1 change: 0 additions & 1 deletion examples/angular-example/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { enableProdMode } from '@angular/core';
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';

import { AppModule } from './app/app.module';
import { environment } from './environments/environment';

Expand Down
1 change: 1 addition & 0 deletions output/vue/vue3/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"noUnusedParameters": false,
"outDir": "dist",
"removeComments": false,
"strictNullChecks": true,
"sourceMap": true,
"target": "esnext",
"types": [],
Expand Down
Loading

0 comments on commit 7d3b171

Please sign in to comment.