This rule disallows use of the backtick operator (for including snippets of JavaScript)
###eslint coffee/no-backticks: "error"###
foo = `a`
class A
`get b() {}`
###eslint coffee/no-backticks: "error"###
foo = ->
"a#{b}`c`"
This rule disallows use of the backtick operator (for including snippets of JavaScript)
###eslint coffee/no-backticks: "error"###
foo = `a`
class A
`get b() {}`
###eslint coffee/no-backticks: "error"###
foo = ->
"a#{b}`c`"