Skip to content

Commit 05b3a75

Browse files
committed
reformatted all code and created new voyenv with the latest Voyager Instruments available.
1 parent 400434d commit 05b3a75

Some content is hidden

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

57 files changed

+11359
-13247
lines changed

.eslintrc

+32-21
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,36 @@
11
{
2-
"root": true,
3-
"parser": "@typescript-eslint/parser",
4-
"plugins": [
5-
"@typescript-eslint"
2+
"root": true,
3+
"parser": "@typescript-eslint/parser",
4+
"plugins": [
5+
"@typescript-eslint"
6+
],
7+
"extends": [
8+
"eslint:recommended",
9+
"plugin:@typescript-eslint/eslint-recommended",
10+
"plugin:@typescript-eslint/recommended"
11+
],
12+
"rules": {
13+
"comma-dangle": [
14+
"warn",
15+
{
16+
"arrays": "always-multiline",
17+
"objects": "always-multiline",
18+
"imports": "always-multiline",
19+
"exports": "never",
20+
"functions": "never"
21+
}
622
],
7-
"extends": [
8-
"eslint:recommended",
9-
"plugin:@typescript-eslint/eslint-recommended",
10-
"plugin:@typescript-eslint/recommended"
23+
"quotes": [
24+
"error",
25+
"single",
26+
{
27+
"avoidEscape": true
28+
}
1129
],
12-
"rules": {
13-
"comma-dangle": ["warn", {
14-
"arrays": "always-multiline",
15-
"objects": "always-multiline",
16-
"imports": "always-multiline",
17-
"exports": "never",
18-
"functions": "never"
19-
}],
20-
"quotes": ["error", "single", { "avoidEscape": true }],
21-
"semi": ["warn", "never"],
22-
"@typescript-eslint/no-explicit-any": "off"
23-
}
24-
30+
"semi": [
31+
"warn",
32+
"never"
33+
],
34+
"@typescript-eslint/no-explicit-any": "off"
35+
}
2536
}

.gitignore

+10
Original file line numberDiff line numberDiff line change
@@ -124,3 +124,13 @@ voyager-test
124124
voyenv.yml
125125
/manifest.schema.json
126126
.DS_Store
127+
128+
**/src/**/*.js
129+
**/src/**/*.d.ts
130+
**/src/**/*.js.map
131+
132+
**/__tests__/**/*.js
133+
**/__tests__/**/*.d.ts
134+
**/__tests__/**/*.js.map
135+
136+
tst

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# DxWorks CLI
2+
23
TBA
34

4-
## Build
5+
## Build
6+
57
```shell
68
# To install dependencies and link projects
79
lerna bootstrap

0 commit comments

Comments
 (0)