Skip to content

Commit

Permalink
chore(deps): update dependency @ota-meshi/eslint-plugin to ^0.15.0 (#542
Browse files Browse the repository at this point in the history
)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Yosuke Ota <otameshiyo23@gmail.com>
  • Loading branch information
renovate[bot] and ota-meshi authored Jul 15, 2023
1 parent 8d94fcf commit 8d75e46
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ module.exports = {
usePrettierrc: true,
},
],
"node/no-missing-import": "off", // It's a plugin bug. Should be replaced with eslint-plugin-n.
"n/file-extension-in-import": "off", // It's a plugin bug(?).
// Repo rule
"no-restricted-imports": [
"error",
Expand Down
2 changes: 1 addition & 1 deletion docs-svelte-kit/.eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ module.exports = {
rules: {
"svelte/no-target-blank": "error",
"svelte/button-has-type": "error",
"node/file-extension-in-import": "off",
"n/file-extension-in-import": "off",
},
}
4 changes: 2 additions & 2 deletions docs-svelte-kit/shim/source-map-js.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { SourceMapGenerator } from "../../node_modules/source-map-js/lib/source-map-generator"
import { SourceMapConsumer } from "../../node_modules/source-map-js/lib/source-map-consumer"
import { SourceMapGenerator } from "../../node_modules/source-map-js/lib/source-map-generator.js"
import { SourceMapConsumer } from "../../node_modules/source-map-js/lib/source-map-consumer.js"
export { SourceMapGenerator, SourceMapConsumer }
export default { SourceMapGenerator, SourceMapConsumer }
4 changes: 2 additions & 2 deletions docs-svelte-kit/src/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ module.exports = {
sourceType: "module",
},
rules: {
"node/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/es-syntax": "off",
"require-jsdoc": "off",
"node/no-missing-import": "off",
"n/no-missing-import": "off",
},
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
"@changesets/cli": "^2.24.2",
"@changesets/get-release-plan": "^3.0.16",
"@fontsource/fira-mono": "^5.0.0",
"@ota-meshi/eslint-plugin": "^0.13.0",
"@ota-meshi/eslint-plugin": "^0.15.0",
"@sindresorhus/slugify": "^2.1.0",
"@sveltejs/adapter-static": "^2.0.2",
"@sveltejs/kit": "^1.16.3",
Expand Down Expand Up @@ -132,7 +132,7 @@
"eslint-plugin-jsonc": "^2.0.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-mdx": "^2.0.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-node-dependencies": "^0.11.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-regexp": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion tests/fixtures/rules/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
"func-style": "off",
"no-console": "off",
"no-use-before-define": "off",
"node/no-unsupported-features/es-syntax": "off",
"n/no-unsupported-features/es-syntax": "off",

"@typescript-eslint/await-thenable": "off",
"@typescript-eslint/no-floating-promises": "off",
Expand Down

0 comments on commit 8d75e46

Please sign in to comment.