Skip to content

Commit

Permalink
Use tabs with width of 4 to format package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
samderanova committed Apr 9, 2024
1 parent 4a0f06a commit 080fd2c
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 34 deletions.
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
{
"name": "hx9-control-system",
"version": "1.0.0",
"description": "The control system consists of the pod operation backend and control station client. See the respective README files for setup instructions.",
"main": "index.js",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"scripts": {
"format:cs": "cd control-station && npm run format",
"format:po": "cd pod-operation && npm run format",
"lint:cs": "cd control-station && npm run lint",
"lint:po": "cd pod-operation && npm run lint",
"test:po": "cd pod-operation && npm run test"
},
"pre-commit": [
"format:cs",
"format:po",
"lint:cs",
"lint:po",
"test:po"
],
"author": "",
"license": "ISC"
"name": "hx9-control-system",
"version": "1.0.0",
"description": "The control system consists of the pod operation backend and control station client. See the respective README files for setup instructions.",
"main": "index.js",
"devDependencies": {
"pre-commit": "^1.2.2"
},
"scripts": {
"format:cs": "cd control-station && npm run format",
"format:po": "cd pod-operation && npm run format",
"lint:cs": "cd control-station && npm run lint",
"lint:po": "cd pod-operation && npm run lint",
"test:po": "cd pod-operation && npm run test"
},
"pre-commit": [
"format:cs",
"format:po",
"lint:cs",
"lint:po",
"test:po"
],
"author": "",
"license": "ISC"
}
22 changes: 11 additions & 11 deletions pod-operation/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "pod-operation",
"version": "1.0.0",
"description": "This Rust package is for the main program to be run on the pod. The program runs a finite-state machine to operate the pod components and acts as a Socket.IO server to communicate with the control station.",
"main": "index.js",
"scripts": {
"lint": "cargo clippy",
"format": "cargo fmt",
"test": "cargo test"
},
"author": "",
"license": "ISC"
"name": "pod-operation",
"version": "1.0.0",
"description": "This Rust package is for the main program to be run on the pod. The program runs a finite-state machine to operate the pod components and acts as a Socket.IO server to communicate with the control station.",
"main": "index.js",
"scripts": {
"lint": "cargo clippy",
"format": "cargo fmt",
"test": "cargo test"
},
"author": "",
"license": "ISC"
}

0 comments on commit 080fd2c

Please sign in to comment.