Skip to content

Commit

Permalink
remove pre-commit hooks (#837)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaomoreno authored Feb 21, 2023
1 parent 78b8316 commit 2bcb79b
Show file tree
Hide file tree
Showing 8 changed files with 21 additions and 731 deletions.
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ npm-debug.log
Dockerfile
.gitignore
.npmignore
.prettierignore
LICENSE
README.md
SECURITY.md
Expand Down
4 changes: 0 additions & 4 deletions .husky/pre-commit

This file was deleted.

2 changes: 0 additions & 2 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
.github/
.husky/
.vscode/
build/
src/
out/test/
out/**/*.d.ts
.dockerignore
.gitignore
.prettierignore
Dockerfile
SECURITY.md
tsconfig.json
Expand Down
3 changes: 0 additions & 3 deletions .prettierignore

This file was deleted.

12 changes: 6 additions & 6 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": ["hbenl.vscode-mocha-test-adapter", "esbenp.prettier-vscode"],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
// See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations.
// Extension identifier format: ${publisher}.${name}. Example: vscode.csharp
// List of extensions which should be recommended for users of this workspace.
"recommendations": ["hbenl.vscode-mocha-test-adapter"],
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
"unwantedRecommendations": []
}
25 changes: 8 additions & 17 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,11 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.insertSpaces": false,
"search.exclude": {
"**/node_modules": true,
"out": true
},
"typescript.tsdk": "./node_modules/typescript/lib",
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[jsonc]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[typescript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"git.branchProtection": ["main"],
"files.associations": { "*.json": "jsonc" }
"editor.insertSpaces": false,
"search.exclude": {
"**/node_modules": true,
"out": true
},
"typescript.tsdk": "./node_modules/typescript/lib",
"git.branchProtection": ["main"],
"files.associations": { "*.json": "jsonc" }
}
Loading

0 comments on commit 2bcb79b

Please sign in to comment.