Configurar Nombre que salen en los commits
git config --global user.name "dasdo"
Configurar Email
git config --global user.email [email protected]
{ | |
"singleAttributePerLine": true, | |
"useTabs": false, | |
"tabWidth": 4, | |
"singleQuote": true, | |
"jsxSingleQuote": true, | |
"arrowParens": "avoid" | |
} |
module.exports = { | |
env: { | |
browser: true, | |
es2021: true, | |
}, | |
extends: [ | |
'plugin:react/recommended', | |
'plugin:react/jsx-runtime', | |
'standard', | |
'eslint-config-prettier', |
- In VS Code settings, search for settings.json: | |
"php.validate.executablePath": "/usr/local/bin/php" | |
- Edit the file: | |
sudo nano /usr/local/bin/php | |
Paste the code: | |
path=$(printf '%s\n' "${PWD##*/}") | |
command="docker exec ${path}_laravel.test_1 php "$@"" | |
echo "Running php on docker ${path}_laravel.test_1" | |
$command |
const gulp = require('gulp'); | |
const fileinclude = require('gulp-file-include'); | |
gulp.task('fileinclude', async function() { | |
gulp.src([ | |
'src/index.html', | |
'src/about.html' | |
]) | |
.pipe(fileinclude({ |
Configurar Nombre que salen en los commits
git config --global user.name "dasdo"
Configurar Email
git config --global user.email [email protected]