This file contains hidden or 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
Show hidden characters
| { | |
| // # PHP PROFILE | |
| // -> editor | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorStyle": "line", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.fontFamily": "'JetBrains Mono', Consolas, 'Courier New', monospace", | |
| "editor.fontLigatures": true, |
This file contains hidden or 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
| <?php | |
| declare(strict_types=1); | |
| use Rector\Config\RectorConfig; | |
| use RectorLaravel\Set\LaravelLevelSetList; | |
| return RectorConfig::configure() | |
| ->withPaths([ | |
| __DIR__ . '/app', |
This file contains hidden or 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
| { | |
| "preset": "laravel", | |
| "rules": { | |
| "concat_space": { "spacing": "one" }, | |
| "group_import": { "group_types": ["classy"] }, | |
| "single_import_per_statement": false, | |
| "declare_strict_types": true, | |
| "simplified_null_return": true, | |
| "new_with_parentheses": { | |
| "anonymous_class": true, |
This file contains hidden or 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
| { | |
| // # JS PROFILE | |
| // -> editor | |
| "editor.bracketPairColorization.enabled": true, | |
| "editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
| "editor.cursorBlinking": "phase", | |
| "editor.cursorStyle": "line", | |
| "editor.cursorSmoothCaretAnimation": "on", | |
| "editor.fontFamily": "'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace", | |
| "editor.fontLigatures": true, |
This file contains hidden or 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
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Run Vite", | |
| "type": "shell", | |
| "command": "npm run dev", | |
| "isBackground": true, | |
| "presentation": { | |
| "panel": "new", |
This file contains hidden or 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
| { | |
| "experimentalTernaries": true, | |
| "semi": false, | |
| "singleQuote": true, | |
| "jsxSingleQuote": true, | |
| "singleAttributePerLine": true, | |
| "overrides": [ | |
| { | |
| "files": ".prettierrc", |
This file contains hidden or 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
| #!/bin/bash | |
| # Limpa a tela antes de iniciar o script | |
| clear | |
| # => Atualização do sistema | |
| echo -e "\n########################################" | |
| echo -e "=> Atualizando inicialmente o sistema...\n" | |
| sudo apt-get update; |