diff --git a/.gitignore b/.gitignore index 869f6d5..b99ab20 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ dist/ downloads/ eggs/ .eggs/ +.vscode/ lib/ lib64/ parts/ diff --git a/pyproject.toml b/pyproject.toml index eb4fd1a..19928fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,6 +24,7 @@ line-length = 200 lint.exclude = [ "**/input_repo/**", "**/output_repo/**", + "**/repositories/**", ] [tool.uv] diff --git a/remove_default_exports/imput_repo/package.json b/remove_default_exports/input_repo/package.json similarity index 100% rename from remove_default_exports/imput_repo/package.json rename to remove_default_exports/input_repo/package.json diff --git a/remove_default_exports/imput_repo/src/auth/services/authenticator.ts b/remove_default_exports/input_repo/src/auth/services/authenticator.ts similarity index 100% rename from remove_default_exports/imput_repo/src/auth/services/authenticator.ts rename to remove_default_exports/input_repo/src/auth/services/authenticator.ts diff --git a/remove_default_exports/imput_repo/src/auth/shared/authenticator.ts b/remove_default_exports/input_repo/src/auth/shared/authenticator.ts similarity index 100% rename from remove_default_exports/imput_repo/src/auth/shared/authenticator.ts rename to remove_default_exports/input_repo/src/auth/shared/authenticator.ts diff --git a/remove_default_exports/imput_repo/src/auth/shared/token.ts b/remove_default_exports/input_repo/src/auth/shared/token.ts similarity index 100% rename from remove_default_exports/imput_repo/src/auth/shared/token.ts rename to remove_default_exports/input_repo/src/auth/shared/token.ts diff --git a/remove_default_exports/imput_repo/src/auth/utils/token-generator.ts b/remove_default_exports/input_repo/src/auth/utils/token-generator.ts similarity index 100% rename from remove_default_exports/imput_repo/src/auth/utils/token-generator.ts rename to remove_default_exports/input_repo/src/auth/utils/token-generator.ts diff --git a/remove_default_exports/imput_repo/src/comments/models/comment.ts b/remove_default_exports/input_repo/src/comments/models/comment.ts similarity index 100% rename from remove_default_exports/imput_repo/src/comments/models/comment.ts rename to remove_default_exports/input_repo/src/comments/models/comment.ts diff --git a/remove_default_exports/imput_repo/src/comments/services/comment-service.ts b/remove_default_exports/input_repo/src/comments/services/comment-service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/comments/services/comment-service.ts rename to remove_default_exports/input_repo/src/comments/services/comment-service.ts diff --git a/remove_default_exports/imput_repo/src/comments/shared/service.ts b/remove_default_exports/input_repo/src/comments/shared/service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/comments/shared/service.ts rename to remove_default_exports/input_repo/src/comments/shared/service.ts diff --git a/remove_default_exports/imput_repo/src/comments/shared/types.ts b/remove_default_exports/input_repo/src/comments/shared/types.ts similarity index 100% rename from remove_default_exports/imput_repo/src/comments/shared/types.ts rename to remove_default_exports/input_repo/src/comments/shared/types.ts diff --git a/remove_default_exports/imput_repo/src/posts/models/post.ts b/remove_default_exports/input_repo/src/posts/models/post.ts similarity index 100% rename from remove_default_exports/imput_repo/src/posts/models/post.ts rename to remove_default_exports/input_repo/src/posts/models/post.ts diff --git a/remove_default_exports/imput_repo/src/posts/services/post-service.ts b/remove_default_exports/input_repo/src/posts/services/post-service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/posts/services/post-service.ts rename to remove_default_exports/input_repo/src/posts/services/post-service.ts diff --git a/remove_default_exports/imput_repo/src/posts/shared/service.ts b/remove_default_exports/input_repo/src/posts/shared/service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/posts/shared/service.ts rename to remove_default_exports/input_repo/src/posts/shared/service.ts diff --git a/remove_default_exports/imput_repo/src/posts/shared/types.ts b/remove_default_exports/input_repo/src/posts/shared/types.ts similarity index 100% rename from remove_default_exports/imput_repo/src/posts/shared/types.ts rename to remove_default_exports/input_repo/src/posts/shared/types.ts diff --git a/remove_default_exports/imput_repo/src/shared/index.ts b/remove_default_exports/input_repo/src/shared/index.ts similarity index 100% rename from remove_default_exports/imput_repo/src/shared/index.ts rename to remove_default_exports/input_repo/src/shared/index.ts diff --git a/remove_default_exports/imput_repo/src/users/models/user.ts b/remove_default_exports/input_repo/src/users/models/user.ts similarity index 100% rename from remove_default_exports/imput_repo/src/users/models/user.ts rename to remove_default_exports/input_repo/src/users/models/user.ts diff --git a/remove_default_exports/imput_repo/src/users/services/user-service.ts b/remove_default_exports/input_repo/src/users/services/user-service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/users/services/user-service.ts rename to remove_default_exports/input_repo/src/users/services/user-service.ts diff --git a/remove_default_exports/imput_repo/src/users/shared/service.ts b/remove_default_exports/input_repo/src/users/shared/service.ts similarity index 100% rename from remove_default_exports/imput_repo/src/users/shared/service.ts rename to remove_default_exports/input_repo/src/users/shared/service.ts diff --git a/remove_default_exports/imput_repo/src/users/shared/types.ts b/remove_default_exports/input_repo/src/users/shared/types.ts similarity index 100% rename from remove_default_exports/imput_repo/src/users/shared/types.ts rename to remove_default_exports/input_repo/src/users/shared/types.ts diff --git a/remove_default_exports/imput_repo/tsconfig.json b/remove_default_exports/input_repo/tsconfig.json similarity index 100% rename from remove_default_exports/imput_repo/tsconfig.json rename to remove_default_exports/input_repo/tsconfig.json