In my TypeScript project I am using the node modules "typescript" and "ts-standard". As IDE I am using Visual Studio Code with the "StandardJS - JavaScript Standard Style" extension. In its settings "Engine" is set to "ts-standard".
To disable a certain ESLint rule for one line I could write /* eslint-disable-next-line padded-blocks */ right above that line.
To disable a certain ESLint rule for one file I could write /* eslint-disable padded-blocks */ at the top of the file.
How do I disable a certain ESLint rule for the whole project/package/workspace?