Files
fi-operations/Fab/editorconfig.md
2024-04-17 09:40:50 -07:00

1.5 KiB

type, created, updated
type created updated
note 2024-04-16T19:09:30.884Z 2024-04-17T09:09:36.234Z

editorconfig

eclint

l:
cd "L:\DevOps\Mesa_FI\OpenInsight"
echo node_modules >> .gitignore
echo [*] > .editorconfig
echo charset = utf-8 >> .editorconfig
echo end_of_line = crlf >> .editorconfig
echo indent_size = 4 >> .editorconfig
echo indent_style = space >> .editorconfig
echo insert_final_newline = true >> .editorconfig
echo tab_width = 4 >> .editorconfig
npm i -D prettier
npx prettier LSL2/STPROC/AC*.txt --check
# npx prettier fix **/*.txt --check
cls
npm i -D eclint
npx eclint fix LSL2/STPROC/AC*.txt
# npx eclint fix **/*.txt
REM

dotnet

l:
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
dotnet build
echo [*] > .editorconfig
echo end_of_line = crlf >> .editorconfig
echo indent_size = 4 >> .editorconfig
echo indent_style = space >> .editorconfig
echo insert_final_newline = false >> .editorconfig
echo tab_width = 4 >> .editorconfig
dotnet format whitespace
REM
l:
cd "L:\DevOps\Mesa_FI\OI-Metrology\Server"
dotnet build
del .editorconfig
notepad ../.editorconfig
dotnet format format --report .vscode --verbosity detailed --severity warn
REM