1 Commits

Author SHA1 Message Date
e87e854cf8 editorconfig draft 2024-04-17 09:40:50 -07:00
2 changed files with 63 additions and 25 deletions

View File

@ -1,25 +0,0 @@
# Restart
## InfinityQS Server name
- messa04ec.infineon.com
## Service Names:
- InfinityQS Diagnostics Service Host
- InfinityQS DMS Service
- [Starting Stopping DMS ->](https://help.infinityqs.com/help/en/ProFicient/#Services/DMS/StartingStopping/StartingStoppingDMS.htm?Highlight=dms)
- InfinityQS Enterprise Integration Service
- InfinityQS Mail Service
- InfinityQS Message Service
- InfinityQS ProFicient Alarm Monitoring Service
- InfinityQS ProFicient Data Collection Service
- [DCS Overview ->](https://help.infinityqs.com/help/en/ProFicient/#Services/DCS/DCSOverview.htm?Highlight=dcs)
## Application path:
C:\Program Files (x86)\InfinityQS International\ProFicient\Applications
- InfinityQS.ProFicient.DCS.GUI.exe
- InfinityQS.DMS.GUI.exe
## Desktop shortcuts to verify services are running.
- InfinityQS Data Management System
- InfinityQS Data Collection Service
- SPC (Si)

63
Fab/editorconfig.md Normal file
View File

@ -0,0 +1,63 @@
---
type: "note"
created: "2024-04-16T19:09:30.884Z"
updated: "2024-04-17T09:09:36.234Z"
---
# editorconfig
- [editorconfig](https://editorconfig.org/)
- [editorconfig-how-to-autofix-all-files-in-a-project](https://stackoverflow.com/questions/39343031/editorconfig-how-to-autofix-all-files-in-a-project)
- [eclint-npmjs](https://www.npmjs.com/package/eclint)
- [eclint-github](https://github.com/jednano/eclint)
## eclint
```bash
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
```bash
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
```
- [dotnet-format](https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-format)
```bash
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
```