Linting an Application
Introduction
When linting a legacy application, this document will help to make reviewing the code easier
Order of Operations
Add your lint config file. For JavaScript, this can be used as a starting point https://github.com/precision-sustainable-ag/dst-selector/blob/develop/.eslintrc.json
Make a new branch called
feature/final-linted
or something similar based off of developMake a PR with auto lint changes into
feature/final-linted
and request reviewMake another PR with manual lint changes into
feature/final-linted
and request reviewMerge
feature/final-linted
into target branch (develop/main)
Purpose
This makes it so that the automatic linting changes can be quickly merged in without needing to go through hundreds of files and thousands of changes. Then once this is complete, any manual changes can be reviewed more closely in a separate PR to ensure there are no breaking changes