Skip to content

Instantly share code, notes, and snippets.

View aryabhatta22's full-sized avatar
🏑
WFH

Tarun Sharma aryabhatta22

🏑
WFH
View GitHub Profile
@aryabhatta22
aryabhatta22 / settings.json
Created October 9, 2025 08:48
VS Code Minimal Setting
{
//------------ Workbench Settings ------------
"workbench.activityBar.location": "bottom",
"workbench.colorTheme": "Houston",
"workbench.editor.showTabs": "single",
"workbench.statusBar.visible": false,
"workbench.startupEditor": "none",
"workbench.tips.enabled": false,
"editor.minimap.enabled": false,
@aryabhatta22
aryabhatta22 / GlobalStyle.js
Created October 25, 2023 16:43
GlobalStyle_StyledComponents
import { createGlobalStyle } from "styled-components";
const GlobalStyles = createGlobalStyle`
:root {
/* Primary */
--color-primary-0: #1d2a3b;
--color-primary-1: #27374D;
--color-primary-2: #526D82;
--color-primary-3: #9DB2BF;
--color-primary-4: #DDE6ED;
@aryabhatta22
aryabhatta22 / .html
Last active September 17, 2023 08:46
Electron Vite configurations
<!-- meta tag to allow rendering of images from faker.js or remote uri -->
<meta
http-equiv="Content-Security-Policy"
content="default-src *;
img-src * 'self' data: https:; script-src 'self' 'unsafe-inline' 'unsafe-eval' *;
style-src 'self' 'unsafe-inline' *"
/>
@aryabhatta22
aryabhatta22 / .eslintrc.cjs
Created August 17, 2023 10:27
Vite-react Configs
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
"eslint:recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
],
ignorePatterns: ["dist", ".eslintrc.cjs"],