Skip to content
This repository was archived by the owner on Mar 19, 2024. It is now read-only.

Commit 29181f8

Browse files
authored
Merge pull request #9 from cybozu/upgrade-dependencies
chore: Upgrade dependencies
2 parents ce2a20c + 0c26d5a commit 29181f8

File tree

7 files changed

+27593
-15363
lines changed

7 files changed

+27593
-15363
lines changed

.eslintrc.js

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,25 @@ module.exports = {
33
"@cybozu/eslint-config/presets/node",
44
"@cybozu/eslint-config/presets/typescript",
55
"prettier",
6-
"prettier/@typescript-eslint"
76
],
87
env: {
98
node: true,
10-
es6: true
9+
es6: true,
1110
},
1211
parserOptions: {
1312
ecmaVersion: 9,
1413
sourceType: "module",
15-
project: "./tsconfig.eslint.json"
14+
project: "./tsconfig.eslint.json",
1615
},
1716
rules: {
18-
"quotes": ["error", "double", { "avoidEscape": true }],
19-
"object-curly-spacing": ["error", "always", { "arraysInObjects": true }],
17+
quotes: ["error", "double", { avoidEscape: true }],
18+
"object-curly-spacing": ["error", "always", { arraysInObjects: true }],
2019
"node/no-unsupported-features/es-syntax": "off",
21-
"node/no-unpublished-import": ["error", {
22-
"allowModules": ["nock"]
23-
}]
24-
}
20+
"node/no-unpublished-import": [
21+
"error",
22+
{
23+
allowModules: ["nock"],
24+
},
25+
],
26+
},
2527
};

0 commit comments

Comments
 (0)