Fix EC violations

This commit is contained in:
Viktor Szépe
2025-04-19 20:27:03 +00:00
parent daddcfafb2
commit 3ff6202404
50 changed files with 387 additions and 387 deletions

View File

@@ -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>

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"