-
Notifications
You must be signed in to change notification settings - Fork 535
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
server: Prettier Formatting (#14402)
## Description Run pnpm run format in Gitrest, Historian, and Routerlicious codebases Prompted by auto-formatting headache in #14401
- Loading branch information
Showing
469 changed files
with
43,792 additions
and
39,179 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
# Generated by npm / Lerna | ||
**/package-lock.json | ||
**/lerna-package-lock.json | ||
**/pnpm-lock.yaml | ||
**/pnpm-workspace.yaml | ||
|
||
# Boilerplate files | ||
CODE_OF_CONDUCT.md | ||
PACKAGES.md | ||
SECURITY.md | ||
|
||
# Build output | ||
**/dist/**/* | ||
**/lib/**/* | ||
**/src/**/test/types/* | ||
**/src/packageVersion.ts | ||
|
||
# Dependencies | ||
**/node_modules/* | ||
|
||
# Pipeline definitions are in YAML and can be broken by autoformatting | ||
tools/pipelines/ | ||
|
||
# Used by API-Extractor | ||
**/_api-extractor-temp/* | ||
**/api-report/* | ||
**/*.api.md | ||
|
||
# Generated type-tests | ||
**/*.generated.ts | ||
|
||
# Generated bundle analysis files | ||
**/bundleAnalysis/** | ||
|
||
# Generated oclif manifest files | ||
**/oclif.manifest.json | ||
|
||
# Test coverage reports | ||
**/coverage/* | ||
**/nyc/* | ||
|
||
# Git configuration file | ||
.git-blame-ignore-revs | ||
|
||
# Server Files | ||
LICENSE.txt | ||
nginx.conf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
version: '3' | ||
version: "3" | ||
services: | ||
gitrest: | ||
volumes: | ||
- .:/home/node/server | ||
- /home/node/server/node_modules | ||
networks: | ||
default: | ||
external: | ||
name: routerlicious_default | ||
default: | ||
external: | ||
name: routerlicious_default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "0.1.0", | ||
"npmClient": "pnpm", | ||
"useWorkspaces": true | ||
"version": "0.1.0", | ||
"npmClient": "pnpm", | ||
"useWorkspaces": true | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,88 +1,88 @@ | ||
{ | ||
"name": "@fluidframework/gitrest-base", | ||
"version": "0.1.0", | ||
"description": "Git REST API base components", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "server/gitrest/packages/gitrest-base" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "npm run build:genver && concurrently npm:build:compile npm:lint", | ||
"build:commonjs": "npm run tsc && npm run build:test", | ||
"build:compile": "npm run build:commonjs", | ||
"build:genver": "gen-version", | ||
"build:test": "tsc --project ./src/test/tsconfig.json", | ||
"clean": "rimraf dist *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run eslint", | ||
"lint:fix": "npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../../.prettierignore", | ||
"start": "node dist/www.js", | ||
"test": "nyc --all -x dist/test/**/* mocha dist/test", | ||
"tsc": "tsc" | ||
}, | ||
"dependencies": { | ||
"@fluidframework/common-utils": "^1.1.1", | ||
"@fluidframework/gitresources": "^0.1038.3000-117199", | ||
"@fluidframework/protocol-base": "^0.1038.3000-117199", | ||
"@fluidframework/protocol-definitions": "^1.1.0", | ||
"@fluidframework/server-services-client": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-core": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-shared": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-telemetry": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-utils": "^0.1038.3000-117199", | ||
"async-mutex": "^0.3.2", | ||
"axios": "^0.26.0", | ||
"body-parser": "^1.17.2", | ||
"compression": "^1.7.3", | ||
"cors": "^2.8.5", | ||
"debug": "^4.1.1", | ||
"express": "^4.17.3", | ||
"isomorphic-git": "^1.14.0", | ||
"json-stringify-safe": "^5.0.1", | ||
"memfs": "^3.4.12", | ||
"nconf": "^0.11.4", | ||
"nodegit": "^0.27.0", | ||
"prettier": "~2.6.2", | ||
"split": "^1.0.0", | ||
"uuid": "^3.3.2", | ||
"winston": "^3.6.0" | ||
}, | ||
"devDependencies": { | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"@rushstack/eslint-config": "^2.6.1", | ||
"@types/async": "^3.2.9", | ||
"@types/cors": "^2.8.4", | ||
"@types/debug": "^4.1.5", | ||
"@types/express": "^4.11.0", | ||
"@types/express-serve-static-core": "^4.17.32", | ||
"@types/lorem-ipsum": "^1.0.2", | ||
"@types/mocha": "^10.0.0", | ||
"@types/nconf": "^0.10.0", | ||
"@types/node": "^14.18.12", | ||
"@types/nodegit": "^0.27.3", | ||
"@types/rimraf": "^3.0.2", | ||
"@types/supertest": "^2.0.7", | ||
"@types/uuid": "^3.4.4", | ||
"@types/winston": "^2.4.4", | ||
"async": "^3.2.2", | ||
"concurrently": "^7.5.0", | ||
"eslint": "~8.27.0", | ||
"lorem-ipsum": "^1.0.6", | ||
"mocha": "^10.1.0", | ||
"nyc": "^15.1.0", | ||
"rimraf": "^3.0.2", | ||
"sillyname": "^0.1.0", | ||
"supertest": "^3.4.2", | ||
"typescript": "~4.5.5" | ||
} | ||
"name": "@fluidframework/gitrest-base", | ||
"version": "0.1.0", | ||
"description": "Git REST API base components", | ||
"homepage": "https://fluidframework.com", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/FluidFramework.git", | ||
"directory": "server/gitrest/packages/gitrest-base" | ||
}, | ||
"license": "MIT", | ||
"author": "Microsoft and contributors", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "npm run build:genver && concurrently npm:build:compile npm:lint", | ||
"build:commonjs": "npm run tsc && npm run build:test", | ||
"build:compile": "npm run build:commonjs", | ||
"build:genver": "gen-version", | ||
"build:test": "tsc --project ./src/test/tsconfig.json", | ||
"clean": "rimraf dist *.tsbuildinfo *.build.log", | ||
"eslint": "eslint --format stylish src", | ||
"eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", | ||
"format": "npm run prettier:fix", | ||
"lint": "npm run eslint", | ||
"lint:fix": "npm run eslint:fix", | ||
"prettier": "prettier --check . --ignore-path ../../.prettierignore", | ||
"prettier:fix": "prettier --write . --ignore-path ../../.prettierignore", | ||
"start": "node dist/www.js", | ||
"test": "nyc --all -x dist/test/**/* mocha dist/test", | ||
"tsc": "tsc" | ||
}, | ||
"dependencies": { | ||
"@fluidframework/common-utils": "^1.1.1", | ||
"@fluidframework/gitresources": "^0.1038.3000-117199", | ||
"@fluidframework/protocol-base": "^0.1038.3000-117199", | ||
"@fluidframework/protocol-definitions": "^1.1.0", | ||
"@fluidframework/server-services-client": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-core": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-shared": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-telemetry": "^0.1038.3000-117199", | ||
"@fluidframework/server-services-utils": "^0.1038.3000-117199", | ||
"async-mutex": "^0.3.2", | ||
"axios": "^0.26.0", | ||
"body-parser": "^1.17.2", | ||
"compression": "^1.7.3", | ||
"cors": "^2.8.5", | ||
"debug": "^4.1.1", | ||
"express": "^4.17.3", | ||
"isomorphic-git": "^1.14.0", | ||
"json-stringify-safe": "^5.0.1", | ||
"memfs": "^3.4.12", | ||
"nconf": "^0.11.4", | ||
"nodegit": "^0.27.0", | ||
"prettier": "~2.6.2", | ||
"split": "^1.0.0", | ||
"uuid": "^3.3.2", | ||
"winston": "^3.6.0" | ||
}, | ||
"devDependencies": { | ||
"@fluidframework/build-common": "^1.1.0", | ||
"@fluidframework/eslint-config-fluid": "^2.0.0", | ||
"@rushstack/eslint-config": "^2.6.1", | ||
"@types/async": "^3.2.9", | ||
"@types/cors": "^2.8.4", | ||
"@types/debug": "^4.1.5", | ||
"@types/express": "^4.11.0", | ||
"@types/express-serve-static-core": "^4.17.32", | ||
"@types/lorem-ipsum": "^1.0.2", | ||
"@types/mocha": "^10.0.0", | ||
"@types/nconf": "^0.10.0", | ||
"@types/node": "^14.18.12", | ||
"@types/nodegit": "^0.27.3", | ||
"@types/rimraf": "^3.0.2", | ||
"@types/supertest": "^2.0.7", | ||
"@types/uuid": "^3.4.4", | ||
"@types/winston": "^2.4.4", | ||
"async": "^3.2.2", | ||
"concurrently": "^7.5.0", | ||
"eslint": "~8.27.0", | ||
"lorem-ipsum": "^1.0.6", | ||
"mocha": "^10.1.0", | ||
"nyc": "^15.1.0", | ||
"rimraf": "^3.0.2", | ||
"sillyname": "^0.1.0", | ||
"supertest": "^3.4.2", | ||
"typescript": "~4.5.5" | ||
} | ||
} |
Oops, something went wrong.