Skip to content

Instantly share code, notes, and snippets.

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

Ciro Plá cirops

🏠
Working from home
View GitHub Profile
@cirops
cirops / qa.sh
Created December 10, 2012 14:16 — forked from krolow/qa.sh
Quality Assurance PHP (checks if the programs exist in the system)
#!/bin/bash
PROGRAMS=(phpmd php-cs-fixer phpcpd phploc)
for PROGRAM in ${PROGRAMS[*]};
do
command -v $PROGRAM >/dev/null 2>&1 || { echo "I require $PROGRAM but it's not installed. Aborting." >&2; exit 1; }
done
echo "======================================================================================="
echo "Fixing code standard"
@cirops
cirops / settings.json
Last active June 30, 2024 02:43 — forked from diego3g/settings.json
VSCode Settings (Updated)
{
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"workbench.startupEditor": "newUntitledFile",
"editor.fontSize": 16,
"javascript.suggest.autoImports": true,
"javascript.updateImportsOnFileMove.enabled": "always",
"editor.rulers": [80, 120],
"extensions.ignoreRecommendations": true,