Skip to content

Commit c835871

Browse files
committed
fix: bump deps, fixed linting
1 parent 2e2afd1 commit c835871

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

.xo-config.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ module.exports = {
66
rules: {
77
'capitalized-comments': 'off',
88
'unicorn/catch-error-name': 'off',
9-
'unicorn/require-post-message-target-origin': 'off'
9+
'unicorn/require-post-message-target-origin': 'off',
10+
'unicorn/prefer-node-protocol': 'warn',
11+
'unicorn/prefer-top-level-await': 'warn',
12+
'unicorn/prefer-logical-operator-over-ternary': 'warn'
1013
},
1114
overrides: [
1215
{
@@ -26,7 +29,9 @@ module.exports = {
2629
'@typescript-eslint/no-unsafe-assignment': 'warn',
2730
'@typescript-eslint/no-unsafe-call': 'warn',
2831
'@typescript-eslint/no-unused-vars': 'warn',
29-
'@typescript-eslint/no-empty-function': 'warn'
32+
'@typescript-eslint/no-empty-function': 'warn',
33+
'@typescript-eslint/consistent-type-definitions': 'warn',
34+
'@typescript-eslint/consistent-type-imports': 'warn'
3035
}
3136
}
3237
],

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@breejs/later": "^4.1.0",
1616
"boolean": "^3.2.0",
1717
"combine-errors": "^3.0.3",
18-
"cron-validate": "^1.4.3",
18+
"cron-validate": "^1.4.5",
1919
"human-interval": "^2.0.1",
2020
"is-string-and-not-blank": "^0.0.2",
2121
"is-valid-path": "^0.1.1",
@@ -24,8 +24,8 @@
2424
"safe-timers": "^1.1.0"
2525
},
2626
"devDependencies": {
27-
"@commitlint/cli": "^17.0.2",
28-
"@commitlint/config-conventional": "^17.0.2",
27+
"@commitlint/cli": "^18.4.3",
28+
"@commitlint/config-conventional": "^18.4.3",
2929
"@goto-bus-stop/envify": "^5.0.0",
3030
"@sinonjs/fake-timers": "^9.1.2",
3131
"@types/node": "^17.0.41",
@@ -36,18 +36,17 @@
3636
"cross-env": "^7.0.3",
3737
"delay": "^5.0.0",
3838
"dtslint": "^4.2.1",
39-
"eslint": "^8.17.0",
39+
"eslint": "8.39.0",
4040
"eslint-config-xo-lass": "^2.0.1",
4141
"events.once": "^2.0.2",
4242
"fixpack": "^4.0.0",
43-
"husky": "^8.0.1",
43+
"husky": "^8.0.3",
4444
"into-stream": "^7.0.0",
45-
"lint-staged": "^13.0.1",
45+
"lint-staged": "^15.1.0",
4646
"nyc": "^15.1.0",
47-
"remark-cli": "^10.0.1",
47+
"remark-cli": "11",
4848
"remark-preset-github": "^4.0.4",
49-
"unassertify": "^2.1.1",
50-
"xo": "^0.50.0"
49+
"xo": "0.53.1"
5150
},
5251
"engines": {
5352
"node": ">=12.17.0 <13.0.0-0||>=13.2.0"

0 commit comments

Comments
 (0)