Organizadas por categoria funcional, com nome legível, identificador e breve descrição.
Nome Legível | Identificador | Descrição |
---|
<?php | |
declare(strict_types=1); | |
use Rector\Config\RectorConfig; | |
use RectorLaravel\Set\LaravelLevelSetList; | |
return RectorConfig::configure() | |
->withPaths([ | |
__DIR__ . '/app', |
{ | |
"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, |
{ | |
// # JS PROFILE | |
// -> editor | |
"editor.bracketPairColorization.enabled": true, | |
"editor.bracketPairColorization.independentColorPoolPerBracketType": true, | |
"editor.cursorBlinking": "phase", | |
"editor.cursorSmoothCaretAnimation": "on", | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
// "editor.foldingImportsByDefault": true, | |
"editor.fontFamily": "'JetBrains Mono', 'Fira Code', Consolas, 'Courier New', monospace", |
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run Vite", | |
"type": "shell", | |
"command": "npm run dev", | |
"isBackground": true, | |
"presentation": { | |
"panel": "new", |
{ | |
"experimentalTernaries": true, | |
"semi": false, | |
"singleQuote": true, | |
"jsxSingleQuote": true, | |
"singleAttributePerLine": true, | |
"overrides": [ | |
{ | |
"files": ".prettierrc", |
#!/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; |