@simplysm/eslint-plugin 13.0.0-beta.16 → 13.0.0-beta.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  import globals from "globals";
2
2
  import tseslint, {} from "typescript-eslint";
3
- import plugin from "../plugin";
3
+ import plugin from "../plugin.js";
4
4
  import importPlugin from "eslint-plugin-import";
5
5
  import unusedImportsPlugin from "eslint-plugin-unused-imports";
6
6
  import solidPlugin from "eslint-plugin-solid";
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import plugin from "./plugin";
2
- import recommended from "./configs/recommended";
1
+ import plugin from "./plugin.js";
2
+ import recommended from "./configs/recommended.js";
3
3
  var index_default = {
4
4
  rules: plugin.rules,
5
5
  configs: { recommended }
package/dist/plugin.js CHANGED
@@ -1,6 +1,6 @@
1
- import noHardPrivate from "./rules/no-hard-private";
2
- import noSubpathImportsFromSimplysm from "./rules/no-subpath-imports-from-simplysm";
3
- import tsNoThrowNotImplementedError from "./rules/ts-no-throw-not-implemented-error";
1
+ import noHardPrivate from "./rules/no-hard-private.js";
2
+ import noSubpathImportsFromSimplysm from "./rules/no-subpath-imports-from-simplysm.js";
3
+ import tsNoThrowNotImplementedError from "./rules/ts-no-throw-not-implemented-error.js";
4
4
  var plugin_default = {
5
5
  rules: {
6
6
  "no-hard-private": noHardPrivate,
@@ -1,5 +1,5 @@
1
1
  import { AST_NODE_TYPES } from "@typescript-eslint/utils";
2
- import { createRule } from "../utils/create-rule";
2
+ import { createRule } from "../utils/create-rule.js";
3
3
  function isClassMemberWithAccessibility(node) {
4
4
  return node?.type === AST_NODE_TYPES.PropertyDefinition || node?.type === AST_NODE_TYPES.MethodDefinition || node?.type === AST_NODE_TYPES.AccessorProperty;
5
5
  }
@@ -1,5 +1,5 @@
1
1
  import { AST_NODE_TYPES, TSESTree } from "@typescript-eslint/utils";
2
- import { createRule } from "../utils/create-rule";
2
+ import { createRule } from "../utils/create-rule.js";
3
3
  var no_subpath_imports_from_simplysm_default = createRule({
4
4
  name: "no-subpath-imports-from-simplysm",
5
5
  meta: {
@@ -1,5 +1,5 @@
1
1
  import { AST_NODE_TYPES, ASTUtils } from "@typescript-eslint/utils";
2
- import { createRule } from "../utils/create-rule";
2
+ import { createRule } from "../utils/create-rule.js";
3
3
  var ts_no_throw_not_implemented_error_default = createRule({
4
4
  name: "ts-no-throw-not-implemented-error",
5
5
  meta: {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@simplysm/eslint-plugin",
3
3
  "sideEffects": false,
4
- "version": "13.0.0-beta.16",
4
+ "version": "13.0.0-beta.18",
5
5
  "description": "심플리즘 패키지 - ESLINT 플러그인",
6
6
  "author": "김석래",
7
7
  "repository": {