How can I disable lint rules on specific lines or for specific rules?

The variable SITMember might possible be undefined if the query is unsuccessful. It’s best to set initialize SITMember to null before running the query. Then, if the query is unsuccessful, you avoid the possibility of accessing an undefined variable.

Note: Since you are handling the Promise returned by the query in the .then() function, it is incorrect to use the await keyword for the query. Just delete await from the line of code.