-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
ONovas
committed
Oct 7, 2020
0 parents
commit b0995d2
Showing
17 changed files
with
8,084 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
--- | ||
name: Error | ||
about: Cree un informe para ayudarnos a mejorar | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Descripción del error** | ||
Una descripción clara y concisa de cuál es el error. | ||
|
||
**Cómo reproducir el error** | ||
Pasos para reproducir el comportamiento: | ||
1. Ir a '...' | ||
2. Hacer click sobre '....' | ||
3. Scroll hasta '....' | ||
4. Ver el error | ||
|
||
**Comportamiento esperado** | ||
Una descripción clara y concisa de lo que esperaba que sucediera. | ||
|
||
**Capturas de pantalla** | ||
Si corresponde, agregue capturas de pantalla para ayudar a explicar su problema. | ||
|
||
**Desktop (por favor complete la siguiente información):** | ||
- OS: [ej. iOS] | ||
- Browser [ej. chrome, safari] | ||
- Version [ej. 22] | ||
|
||
**Smartphone (por favor complete la siguiente información):** | ||
- Device: [ej. iPhone6] | ||
- OS: [ej. iOS8.1] | ||
- Browser [ej. stock browser, safari] | ||
- Version [ej. 22] | ||
|
||
**Información adicional** | ||
Agregue aquí cualquier otro contexto sobre el problema. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: Nueva funcionalidad | ||
about: Sugerir una idea para este proyecto | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**¿Su solicitud de función está relacionada con un problema? Por favor descríbalo.** | ||
Una descripción clara y concisa de cuál es el problema. | ||
Ej. Siempre me frustra cuando [...] | ||
|
||
**Describa la solución que le gustaría** | ||
Una descripción clara y concisa de lo que quiere que suceda. | ||
|
||
**Describe las alternativas que ha considerado** | ||
Una descripción clara y concisa de cualquier solución o característica | ||
alternativa que haya considerado. | ||
|
||
**Información adicional** | ||
Agregue cualquier otro contexto o capturas de pantalla sobre la solicitud de | ||
función aquí. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
|
||
{ | ||
"name": "XDebug [Local]", | ||
"type": "php", | ||
"request": "launch", | ||
"port": 9000, | ||
"stopOnEntry": false, | ||
"xdebugSettings": { | ||
"max_children": 128, | ||
"max_data": 1024, | ||
"max_depth": 3, | ||
"show_hidden": 1 | ||
}, | ||
"log": false, | ||
}, | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
{ | ||
/* CONFIGURACIONES GENERALES DEL EDITOR */ | ||
"css.validate": true, | ||
|
||
"html.format.enable": true, | ||
"html.format.wrapLineLength": 80, | ||
|
||
"diffEditor.ignoreTrimWhitespace": false, | ||
|
||
"telemetry.enableTelemetry": false, | ||
|
||
"terminal.integrated.shell.windows": "C:\\Program Files\\Git\\bin\\bash.exe", | ||
|
||
"editor.tabSize": 2, | ||
"editor.autoIndent": "full", | ||
"editor.insertSpaces": true, | ||
"editor.formatOnPaste": false, | ||
"editor.formatOnSave": false, | ||
"editor.renderWhitespace": "boundary", | ||
"editor.wordWrapColumn": 80, | ||
"editor.wordWrap": "off", | ||
"editor.detectIndentation": true, | ||
"editor.fontSize": 14, | ||
"editor.rulers": [80], | ||
|
||
"explorer.openEditors.visible": 0, | ||
|
||
"workbench.colorTheme": "Monokai Dimmed", | ||
|
||
"files.associations": { | ||
"*.inc": "php", | ||
"*.module": "php", | ||
"*.install": "php", | ||
"*.theme": "php", | ||
"*.tpl.php": "php", | ||
"*.test": "php", | ||
"*.php": "php", | ||
"*.twig": "html", | ||
}, | ||
"files.trimTrailingWhitespace": true, | ||
"files.insertFinalNewline": true, | ||
"files.eol": "\n", | ||
"files.autoSave": "onFocusChange", | ||
|
||
"emmet.includeLanguages": { | ||
"twig": "html" | ||
}, | ||
|
||
/* SASS */ | ||
"liveSassCompile.settings.formats": [ | ||
{ | ||
"format": "expanded", | ||
"extensionName": ".css", | ||
"savePath": "/css" | ||
}, | ||
{ | ||
"format": "compressed", | ||
"extensionName": ".min.css", | ||
"savePath": "/css" | ||
} | ||
], | ||
"liveSassCompile.settings.autoprefix": [ | ||
"> 1%", | ||
"last 2 versions" | ||
], | ||
"liveSassCompile.settings.generateMap": true, | ||
"liveSassCompile.settings.excludeList": [ | ||
".vscode/**", | ||
"css/**" | ||
], | ||
"liveSassCompile.settings.showOutputWindow": false, | ||
|
||
/* SVG */ | ||
"svgviewer.enableautopreview": true, | ||
|
||
/* PHP Code Sniffer */ | ||
"phpcs.enable": true, | ||
"phpcs.standard": "Drupal,DrupalPractice", | ||
|
||
/* PHP Validation */ | ||
"php.validate.enable": true, | ||
"php.validate.run": "onType", | ||
|
||
/* PHP Intellisense */ | ||
"php.suggest.basic": false, | ||
|
||
/* PHP DocBlocks */ | ||
"php-docblocker.gap": true, | ||
"php-docblocker.useShortNames": true, | ||
"php-docblocker.author": { | ||
"name": "Óscar Novás", | ||
"email": "onovas@gloudify.com" | ||
}, | ||
|
||
/* Empty Indent */ | ||
"emptyIndent.removeIndent": true, | ||
"emptyIndent.highlightIndent": false, | ||
"emptyIndent.highlightColor": "rgba(246,36,89,0.6)", | ||
|
||
/* GIT */ | ||
"git.showPushSuccessNotification": true, | ||
"git.autofetch": true, | ||
|
||
/* TO-DO TREE */ | ||
"todo-tree.highlights.customHighlight": { | ||
"TODO": { | ||
"icon": "check", | ||
"type": "line", | ||
"foreground": "#008000", | ||
"iconColour": "#008000" | ||
}, | ||
"FIXME": { | ||
"icon": "alert", | ||
"type": "line", | ||
"foreground": "#FF0000", | ||
"iconColour": "#FF0000" | ||
}, | ||
"CHANGES": { | ||
"icon": "info", | ||
"type": "line", | ||
"foreground": "#FFA500", | ||
"iconColour": "#FFA500" | ||
}, | ||
"INFO": { | ||
"icon": "info", | ||
"type": "line", | ||
"foreground": "#FFFF00", | ||
"iconColour": "#FFFF00" | ||
} | ||
}, | ||
"todo-tree.general.tags": [ | ||
"TODO", | ||
"FIXME", | ||
"CHANGES", | ||
"INFO", | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Descargar master", | ||
"type": "shell", | ||
"command": "git pull origin master" | ||
}, | ||
{ | ||
"label": "Descargar developer", | ||
"type": "shell", | ||
"command": "git pull origin develop" | ||
} | ||
] | ||
} |
Oops, something went wrong.