ESlint doesn't check for TypeScript errors, so if you want to check for TypeScript errors in your pre commit hook, you'll need to run the tsc --noEmit command in addition to the ESLint command.
However, I would suggest using lint-staged so you don't have to run the eslint command on all the files in your src/, but rather only run it on files that are staged to be committed. This will save you time.
List of all React hooks using data structures and algorithms
cshooks
A collection of React Hooks using Computer Science (CS) data structures & algorithms.
Purpose
Mainly to learn CS data structure & algorithms (and also implement'em in TypeScript).
Hopefully some of the arcane data structures & algorithms help you as well.
Implemented
useTrie
Returns a Trie data structure, which is used to save a list of words to search in memory efficient manner & provide a type-ahead (not yet implemented) functionality.
Contributors
Thanks goes to these wonderful people (emoji key):
ESlint doesn't check for TypeScript errors, so if you want to check for TypeScript errors in your pre commit hook, you'll need to run the
tsc --noEmit
command in addition to the ESLint command.Here's a pre commit command that you could use:
However, I would suggest using lint-staged so you don't have to run the eslint command on all the files in your
src/
, but rather only run it on files that are staged to be committed. This will save you time.Oh well that makes total sense. I though eslint with ts was doing tslint, and I thought tslint would do these kind of checks.
Many thanks, and yeah, I went with the section option:
Thank you Robert for the easy-to-follow article & bitten for adding the prettier option.
I was able to get the eslint & prettier set up for my pet project after following this post & the comments.
List of all React hooks using data structures and algorithms
cshooks
A collection of React Hooks using Computer Science (CS) data structures & algorithms.
Purpose
Mainly to learn CS data structure & algorithms
(and also implement'em in TypeScript).
Hopefully some of the arcane data structures & algorithms help you as well.
Implemented
useTrie
Returns a Trie data structure, which is used to save a list of words to search in memory efficient manner & provide a type-ahead (not yet implemented) functionality.
Contributors
Thanks goes to these wonderful people (emoji key):
Sung M. Kim
🚇 🔧 ⚠️ 📖 🤔 💻
This project follows the all-contributors specification. Contributions of any kind welcome!