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 / settings.json
Last active April 26, 2022 13:30 — 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,
@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"