Ignore TypeScript-ESLint Rule with Code Comment
JavaScriptPublished
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
To ignore a typescript-eslint rule for a single line or block of code:
/* eslint-disable @typescript-eslint/camelcase */
const myObj = {
some_property: 'blah',
};