mirror of
https://github.com/yamadashy/repomix.git
synced 2025-06-11 00:25:54 +03:00
Fix EC violations
This commit is contained in:
@@ -686,8 +686,6 @@ When running as an MCP server, Repomix provides the following tools:
|
||||
- Provides safe directory traversal with proper error handling
|
||||
- Validates paths and ensures they are absolute
|
||||
|
||||
|
||||
|
||||
## ⚙️ Configuration
|
||||
|
||||
Create a `repomix.config.json` file in your project root for custom configurations.
|
||||
@@ -1012,11 +1010,10 @@ We welcome contributions from the community! To get started, please refer to our
|
||||
<img alt="contributors" src="https://contrib.rocks/image?repo=yamadashy/repomix"/>
|
||||
</a>
|
||||
|
||||
|
||||
|
||||
## 🔒 Privacy Policy
|
||||
|
||||
### Repomix CLI Tool
|
||||
|
||||
- **Data Collection**: The Repomix CLI tool does **not** collect, transmit, or store any user data, telemetry, or repository information.
|
||||
- **Network Usage**: Repomix CLI operates fully offline after installation. The only cases where an internet connection is needed are:
|
||||
- Installation via npm/yarn.
|
||||
@@ -1025,13 +1022,14 @@ We welcome contributions from the community! To get started, please refer to our
|
||||
- **Security Considerations**: Since all processing is local, Repomix CLI is safe to use with private and internal repositories.
|
||||
|
||||
### Repomix Website ([repomix.com](https://repomix.com/))
|
||||
|
||||
- **Data Collection**: The Repomix website uses **Google Analytics** to collect usage data, such as page views and user interactions. This helps us understand how the website is used and improve the user experience.
|
||||
|
||||
### Liability Disclaimer
|
||||
|
||||
Repomix (both the CLI tool and the website) is provided "as is" without any warranties or guarantees.
|
||||
We do not take responsibility for how the generated output is used, including but not limited to its accuracy, legality, or any potential consequences arising from its use.
|
||||
|
||||
|
||||
## 📜 License
|
||||
|
||||
This project is licensed under the [MIT License](LICENSE).
|
||||
@@ -1041,5 +1039,4 @@ This project is licensed under the [MIT License](LICENSE).
|
||||
<a href="#repo-content-pjax-container" target="_blank">
|
||||
Back To Top
|
||||
</a>
|
||||
|
||||
</p>
|
||||
|
||||
@@ -6,7 +6,8 @@
|
||||
type="submit"
|
||||
>
|
||||
{{ loading ? 'Processing...' : 'Pack' }}
|
||||
<svg v-if="!loading"
|
||||
<svg
|
||||
v-if="!loading"
|
||||
class="pack-button-icon"
|
||||
width="20"
|
||||
height="20"
|
||||
|
||||
@@ -55,7 +55,8 @@ function triggerFileInput() {
|
||||
|
||||
<template>
|
||||
<div class="upload-wrapper">
|
||||
<div class="upload-container"
|
||||
<div
|
||||
class="upload-container"
|
||||
:class="{ 'drag-active': dragActive, 'has-error': errorMessage }"
|
||||
@dragover.prevent="dragActive = true"
|
||||
@dragleave="dragActive = false"
|
||||
|
||||
@@ -174,7 +174,8 @@ const triggerFileInput = () => {
|
||||
|
||||
<template>
|
||||
<div class="upload-wrapper">
|
||||
<div class="upload-container"
|
||||
<div
|
||||
class="upload-container"
|
||||
:class="{ 'drag-active': dragActive, 'has-error': errorMessage }"
|
||||
@dragover.prevent="dragActive = true"
|
||||
@dragleave="dragActive = false"
|
||||
|
||||
Reference in New Issue
Block a user