|
31 | 31 | "build:examples": "tsc -p examples/tsconfig.json",
|
32 | 32 | "build:readme": "markdown-magic --files \"**/*.md\"",
|
33 | 33 | "build:tsc": "npm run tsc",
|
| 34 | + "check:biome": "biome check .", |
| 35 | + "check:format": "npm run check:biome", |
34 | 36 | "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json",
|
35 | 37 | "ci:build:docs": "api-extractor run && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/",
|
36 | 38 | "clean": "rimraf --glob _api-extractor-temp nyc dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\"",
|
37 | 39 | "eslint": "eslint src",
|
38 | 40 | "eslint:fix": "eslint src --fix",
|
39 |
| - "format": "npm run prettier:fix", |
| 41 | + "format": "npm run format:biome", |
40 | 42 | "format-and-build": "npm run format && npm run build",
|
| 43 | + "format:biome": "biome check . --write", |
41 | 44 | "good-fences": "gf",
|
42 |
| - "lint": "npm run prettier && npm run good-fences && npm run eslint", |
| 45 | + "lint": "npm run good-fences && npm run eslint", |
43 | 46 | "lint:fences": "npm run good-fences",
|
44 |
| - "lint:fix": "npm run prettier:fix && npm run eslint:fix", |
45 |
| - "prettier": "prettier --check . --cache --ignore-path ../../.prettierignore", |
46 |
| - "prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore", |
| 47 | + "lint:fix": "npm run eslint:fix", |
47 | 48 | "rebuild": "npm run clean && npm run build",
|
48 | 49 | "test": "npm run test:mocha",
|
49 | 50 | "test:coverage": "c8 npm test:mocha",
|
|
85 | 86 | "unist-util-remove-position": "^5.0.0"
|
86 | 87 | },
|
87 | 88 | "devDependencies": {
|
| 89 | + "@biomejs/biome": "^1.7.3", |
88 | 90 | "@fluid-internal/mocha-test-setup": "~2.0.0-rc.3.0.3",
|
89 | 91 | "@fluid-tools/markdown-magic": "file:../markdown-magic",
|
90 | 92 | "@fluidframework/build-common": "^2.0.3",
|
|
0 commit comments