Organizadas por categoria funcional, com nome legível, identificador e breve descrição.
| Nome Legível | Identificador | Descrição |
|---|
| #!/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; |
| { | |
| "version": "2.0.0", | |
| "tasks": [ | |
| { | |
| "label": "Run Vite", | |
| "type": "shell", | |
| "command": "npm run dev", | |
| "isBackground": true, | |
| "presentation": { | |
| "panel": "new", |
| { | |
| // # Workbench | |
| "workbench.colorTheme": "GitHub Dark Default", | |
| "workbench.editor.enablePreview": false, | |
| "workbench.iconTheme": "symbols", | |
| "workbench.layoutControl.enabled": false, | |
| "workbench.list.smoothScrolling": false, | |
| "workbench.productIconTheme": "fluent-icons", | |
| "workbench.sideBar.location": "right", | |
| "workbench.startupEditor": "none", |
| { | |
| "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, |
| <?php | |
| declare(strict_types=1); | |
| use Rector\Config\RectorConfig; | |
| use RectorLaravel\Set\LaravelLevelSetList; | |
| return RectorConfig::configure() | |
| ->withPaths([ | |
| __DIR__ . '/app', |