Skip to content

Commit cd7fac6

Browse files
chore(deps): update dependency @ota-meshi/eslint-plugin to ^0.15.0 (#295)
* chore(deps): update dependency @ota-meshi/eslint-plugin to ^0.15.0 * fix --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
1 parent 7c00a3c commit cd7fac6

File tree

6 files changed

+120
-149
lines changed

6 files changed

+120
-149
lines changed

.eslintrc.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -109,9 +109,9 @@ module.exports = {
109109
},
110110
rules: {
111111
"require-jsdoc": "off",
112-
"node/no-unsupported-features/es-syntax": "off",
113-
"node/no-missing-import": "off",
114-
"node/no-missing-require": "off",
112+
"n/no-unsupported-features/es-syntax": "off",
113+
"n/no-missing-import": "off",
114+
"n/no-missing-require": "off",
115115
},
116116
},
117117
],
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
export * from "./deserialize";
2-
export * from "./serialize";
1+
export * from "./deserialize.js";
2+
export * from "./serialize.js";

docs/.vuepress/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
const path = require("path");
22
const categories = require("./categories");
3-
// eslint-disable-next-line node/no-extraneous-require -- demo
3+
// eslint-disable-next-line n/no-extraneous-require -- demo
44
const webpack = require("webpack");
55

66
module.exports = {
@@ -25,7 +25,7 @@ module.exports = {
2525
"../../node_modules/@eslint/eslintrc/dist/eslintrc-universal.cjs",
2626
),
2727
eslint$: require.resolve("./shim/eslint"),
28-
// eslint-disable-next-line node/no-extraneous-require -- demo
28+
// eslint-disable-next-line n/no-extraneous-require -- demo
2929
stylus: require.resolve("stylus/lib/stylus"),
3030
glob: require.resolve("./shim/glob"),
3131
"safer-buffer": require.resolve("./shim/safer-buffer"),
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* eslint node/no-unsupported-features/es-syntax:0 -- ignore */
1+
/* eslint n/no-unsupported-features/es-syntax:0 -- ignore */
22
import { Linter } from "eslint/lib/linter";
33
export { Linter };
44
export default { Linter };

0 commit comments

Comments
 (0)