File tree Expand file tree Collapse file tree 3 files changed +35
-6
lines changed
Expand file tree Collapse file tree 3 files changed +35
-6
lines changed Original file line number Diff line number Diff line change 1+ # Auto detect text files and perform LF normalization
2+ * text =auto eol =lf
3+
4+ # Declare files that will always have LF line endings on checkout.
5+ * .sh text eol =lf
6+
7+ # Don't check these into the repo as LF to work around TeamCity bug
8+ * .xml - text
9+ * .targets - text
10+
11+ # Custom for Visual Studio
12+ * .cs diff =csharp
13+ * .sln
14+ * .csproj
15+ * .vbproj
16+ * .fsproj
17+ * .dbproj
18+
19+ # Denote all files that are truly binary and should not be modified.
20+ * .dll binary
21+ * .exe binary
22+ * .png binary
23+ * .ico binary
24+ * .snk binary
25+ * .pdb binary
26+ * .svg binary
27+
28+ # Don't check for trailing whitespace at end of lines in the doc pages
29+ * .md - whitespace =blank-at-eol
Original file line number Diff line number Diff line change 3636 npm install
3737 name: Install dependencies
3838 - run : |
39- npm run lint
40- npm run format- check
39+ npm run lint:check
40+ npm run format: check
4141 name: Check code formatting
4242 - run : |
4343 npm run build:tools
Original file line number Diff line number Diff line change 1414 "scripts" : {
1515 "build" : " run-p build:tools build:agents" ,
1616 "test" : " run-p test:tools test:agents" ,
17- "lint" : " eslint --ext .ts src" ,
18- "lint- fix" : " eslint --ext .ts src --fix" ,
19- "format" : " prettier --write \" src/**/*.ts\" " ,
20- "format-check " : " prettier --check \" src/**/*.ts\" " ,
17+ "lint:check " : " eslint --ext .ts src" ,
18+ "lint: fix" : " eslint --ext .ts src --fix" ,
19+ "format:check " : " prettier --check \" src/**/*.ts\" " ,
20+ "format:fix " : " prettier --write \" src/**/*.ts\" " ,
2121
2222 "build:tools" : " vite build --config src/tools/vite.config.mts" ,
2323 "build:agents" : " run-p build:agent:local build:agent:azure build:agent:github" ,
You can’t perform that action at this time.
0 commit comments