Skip to content

Latest commit

 

History

History
22 lines (15 loc) · 426 Bytes

no-backticks.md

File metadata and controls

22 lines (15 loc) · 426 Bytes

coffee/no-backticks

This rule disallows use of the backtick operator (for including snippets of JavaScript)

👎 Examples of incorrect code for this rule:

###eslint coffee/no-backticks: "error"###

foo = `a`

class A
  `get b() {}`

👍 Examples of correct code for this rule:

###eslint coffee/no-backticks: "error"###

foo = ->

"a#{b}`c`"