Adopt Typescript Recommended Guidelines on the Frontend library #503
Labels
area:frontend
From the Frontend folder
help wanted
Extra attention is needed
status:needs_votes
Issue or bug fix that needs support from the community to be considered
type:maintenance
A regular maintenance chore or task, including refactors, build system, CI, performance improvements
We have setup code linting with ESLint and added some basic rules like the 'react/recommended' to our project.
To make sure we use best practices, reduce our code review effort and provide the best developer experience for our contributors, I suggest to extend the linting rules with the Typescript Recommended rules ('plugin:@typescript-eslint/recommended') on the
extends
portion of our ESLint configuration.Possible Implementation
The Typescript plugin is already in the system. The work on this ticket would entail adding 'plugin:@typescript-eslint/recommended') on the
extends
portion of our ESLint configuration. Then, we would need to runnpm run lint
to see all the errors and one by one fix those.Context
Following strict coding rules for our code benefits Amundsen as:
Also, for TypeScript, getting this rules implemented would make our codebase more type safe.
The text was updated successfully, but these errors were encountered: