Skip to content

Commit b77659d

Browse files
committed
chore(vscode): centralise formatting code
1 parent 99729af commit b77659d

50 files changed

Lines changed: 14712 additions & 16994 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.circleci/continue_config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,9 @@ jobs:
143143
- v1-nm-cache-{{ checksum "package-lock.json" }}
144144
- run:
145145
name: Install packages
146-
command: npm ci
146+
command: |
147+
npm ci
148+
npm rebuild @swc/core --build-from-source
147149
- save_cache:
148150
key: v1-nm-cache-{{ checksum "package-lock.json" }}
149151
paths:

.prettierignore

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
web/client/**/*.py
2+
web/client/.prettierignore
3+
web/client/.gitignore
4+
web/client/node_modules/
5+
web/client/test-results/
6+
web/client/playwright-report/
7+
web/client/playwright/.cache/
8+
web/client/dist
9+
web/client/public/favicons/
10+
web/client/public/fonts/
11+
web/client/src/styles/fonts/
12+
web/client/src/assets/fonts/
13+
web/client/tsconfig.tsbuildinfo
14+
web/client/src/utils/tbk-components.js
15+
16+
node_modules/
17+
vscode/extension/node_modules/
18+
vscode/extension/dist
19+
vscode/extension/out
20+
vscode/extension/tsconfig.tsbuildinfo
21+
vscode/extension/.vscode-test/
22+
23+
sqlmesh
24+
docs
25+
tests
26+
examples
27+
posts
28+
.circleci
29+
README.md
30+
mkdocs.yml
31+
.readthedocs.yaml
32+
.pre-commit-config.yaml
33+
package-lock.json
34+
**/*.md
35+
.ruff_cache
36+
.pytest_cache
37+
.venv
38+
.vscode
39+
build

0 commit comments

Comments
 (0)