Ignore TypeScript-ESLint Rule with Code Comment

To ignore a typescript-eslint rule for a single line or block of code:

/* eslint-disable @typescript-eslint/camelcase */
const myObj = {
  some_property: 'blah',
};

Published