Enforce the consistent use of either backticks, double, or single quotes (quotes)

Rule Details

This rule extends the base eslint/quotes rule. It supports all options and features of the base rule.

How to use

{
  // note you must disable the base rule as it can report incorrect errors
  "quotes": "off",
  "@typescript-eslint/quotes": ["error"]
}

Options

See eslint/quotes options.

Taken with ❤️ from ESLint core