Skip to content

Commit

Permalink
Merge branch 'repo-setup' of https://github.com/Fieldguide/pipeline i…
Browse files Browse the repository at this point in the history
…nto repo-setup
  • Loading branch information
nrutman committed Jan 23, 2024
2 parents 0880b53 + f2fd669 commit 6cb9481
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ end_of_line = lf
indent_size = 2
indent_style = space
insert_final_newline = true
trim_trailing_whitespace = true
trim_trailing_whitespace = true
2 changes: 1 addition & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/build
/build
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ module.exports = {
"@typescript-eslint/no-unsafe-call": "warn",
"@typescript-eslint/no-unsafe-member-access": "warn",
"@typescript-eslint/no-unsafe-return": "warn",
"unused-imports/no-unused-imports": "error",
curly: "error",
},
},
Expand Down
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.github/*.md
.vscode
build
build
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"editorconfig.editorconfig",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode"
]
}
6 changes: 5 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
{
"cSpell.words": ["fieldguide"]
"cSpell.words": [
"fieldguide"
],
"typescript.tsdk": "node_modules/typescript/lib",
"editor.defaultFormatter": "esbenp.prettier-vscode"
}
8 changes: 0 additions & 8 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,4 @@
"resolveJsonModule": true,
},
"include": ["src"],
"ts-node": {
"swc": true, // https://typestrong.org/ts-node/docs/swc

// https://typestrong.org/ts-node/docs/paths/
// tsconfig-paths removes the need for NODE_PATH=./src and allows for
// fancier paths: https://medium.com/@fmoessle/typescript-paths-with-ts-node-ts-node-dev-and-jest-671deacf6428
"require": ["tsconfig-paths/register", "dotenv/config"],
},
}

0 comments on commit 6cb9481

Please sign in to comment.