Small cleanup

This commit is contained in:
2021-12-06 16:22:35 +03:00
parent ab0ee68bd1
commit 72f1c54ffd
3 changed files with 5 additions and 11 deletions

View File

@@ -3,7 +3,6 @@
src/**
.gitignore
.yarnrc
vsc-extension-quickstart.md
**/tsconfig.json
**/.eslintrc.json
**/*.map

View File

@@ -1,9 +1,5 @@
# Change Log
All notable changes to the "gitcheck" extension will be documented in this file.
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.
## [Unreleased]
## [0.0.1]
- Initial release

View File

@@ -8,11 +8,10 @@
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
"strict": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUnusedParameters": true,
},
"exclude": [
"node_modules",