From fdc521646fa97d6d70da984e538024c77171848e Mon Sep 17 00:00:00 2001 From: Jeffrey Ling Date: Fri, 6 Dec 2024 12:48:48 -0700 Subject: [PATCH] no need to prettier format everything right now --- CODE_OF_CONDUCT.md | 22 +++++++++++----------- SECURITY.md | 1 - client/src/App.tsx | 3 +-- client/src/main.tsx | 4 ++-- client/vite.config.ts | 8 ++++---- 5 files changed, 18 insertions(+), 20 deletions(-) diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md index 7e832b3..05c32c6 100644 --- a/CODE_OF_CONDUCT.md +++ b/CODE_OF_CONDUCT.md @@ -17,23 +17,23 @@ diverse, inclusive, and healthy community. Examples of behavior that contributes to a positive environment for our community include: -- Demonstrating empathy and kindness toward other people -- Being respectful of differing opinions, viewpoints, and experiences -- Giving and gracefully accepting constructive feedback -- Accepting responsibility and apologizing to those affected by our mistakes, +* Demonstrating empathy and kindness toward other people +* Being respectful of differing opinions, viewpoints, and experiences +* Giving and gracefully accepting constructive feedback +* Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience -- Focusing on what is best not just for us as individuals, but for the +* Focusing on what is best not just for us as individuals, but for the overall community Examples of unacceptable behavior include: -- The use of sexualized language or imagery, and sexual attention or +* The use of sexualized language or imagery, and sexual attention or advances of any kind -- Trolling, insulting or derogatory comments, and personal or political attacks -- Public or private harassment -- Publishing others' private information, such as a physical or email +* Trolling, insulting or derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or email address, without their explicit permission -- Other conduct which could reasonably be considered inappropriate in a +* Other conduct which could reasonably be considered inappropriate in a professional setting ## Enforcement Responsibilities @@ -106,7 +106,7 @@ Violating these terms may lead to a permanent ban. ### 4. Permanent Ban **Community Impact**: Demonstrating a pattern of violation of community -standards, including sustained inappropriate behavior, harassment of an +standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals. **Consequence**: A permanent ban from any sort of public interaction within diff --git a/SECURITY.md b/SECURITY.md index 9d54767..21f8e59 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -1,5 +1,4 @@ # Security Policy - Thank you for helping us keep the inspector secure. ## Reporting Security Issues diff --git a/client/src/App.tsx b/client/src/App.tsx index 8a4df79..2c84377 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -59,8 +59,7 @@ const DEFAULT_REQUEST_TIMEOUT_MSEC = 10000; const params = new URLSearchParams(window.location.search); const PROXY_PORT = params.get("proxyPort") ?? "3000"; -const REQUEST_TIMEOUT = - parseInt(params.get("timeout") ?? "") || DEFAULT_REQUEST_TIMEOUT_MSEC; +const REQUEST_TIMEOUT = parseInt(params.get("timeout") ?? "") || DEFAULT_REQUEST_TIMEOUT_MSEC; const PROXY_SERVER_URL = `http://localhost:${PROXY_PORT}`; const App = () => { diff --git a/client/src/main.tsx b/client/src/main.tsx index 450213d..8ed57a0 100644 --- a/client/src/main.tsx +++ b/client/src/main.tsx @@ -1,7 +1,7 @@ import { StrictMode } from "react"; import { createRoot } from "react-dom/client"; -import { ToastContainer } from "react-toastify"; -import "react-toastify/dist/ReactToastify.css"; +import { ToastContainer } from 'react-toastify'; +import 'react-toastify/dist/ReactToastify.css'; import App from "./App.tsx"; import "./index.css"; diff --git a/client/vite.config.ts b/client/vite.config.ts index dd3bd01..3b6c407 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -14,8 +14,8 @@ export default defineConfig({ minify: false, rollupOptions: { output: { - manualChunks: undefined, - }, - }, - }, + manualChunks: undefined + } + } + } });