Skip to content

Instantly share code, notes, and snippets.

View KcPele's full-sized avatar
🏠
Working from home

Kc pele KcPele

🏠
Working from home
View GitHub Profile
#!/bin/bash
set -euo pipefail
# Directory setup
APP_DIR="${HOME}/Applications"
ICON_DIR="${HOME}/.local/share/icons"
DESKTOP_DIR="${HOME}/.local/share/applications"
BIN_DIR="${HOME}/.local/bin"
@adrianhajdin
adrianhajdin / eslintrc.js
Created May 18, 2022 14:38
ESLint Configuration
// eslintrc.js
module.exports = {
env: {
browser: true,
es6: true,
},
extends: [
'plugin:react/recommended',
'airbnb',
],