Remove need to manually compile JS binary for hashFiles utility (#2770)

* Add in pre-commit hook and husky integration to compile the js binary on commit

* Lint/format before build
This commit is contained in:
Ryan van Zeben
2023-08-24 10:14:11 -04:00
committed by GitHub
parent 7b53c38294
commit 8dd2cec3af
6 changed files with 1572 additions and 573 deletions

View File

@@ -1,11 +1,19 @@
{
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"parser": "typescript"
}
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"bracketSpacing": false,
"arrowParens": "avoid",
"overrides": [
{
"files": "*.{js,ts,json}",
"options": {
"tabWidth": 2
}
}
]
}