Git Product home page Git Product logo

Comments (1)

jugglinmike avatar jugglinmike commented on September 28, 2024

I like this idea! We should probably apply it to template literals and regular expression literals, too (although the character sets are slightly different in each context).

When it comes to regular expression literals, folks in an ES6-enabled environment can opt-in to this restriction thanks to the u flag:

// ES6-compliant runtimes tolerate the following unnecessary escape:
/\j/;

// ES6-complaint runtimes reject the following unnecessary escape:
/\j/u;

That behavior's part of the language, so it'll cause a syntax error today, anywhere. It's worth noting that JSHint implements that behavior because it gives us a head start on this feature request.

$ echo '/* jshint esversion: 6 */ void /\j/u;' | ./bin/jshint --verbose -
stdin: line 1, col 32, Invalid regular expression. (E016)

1 error

There may even be an opportunity to re-use some of that code...

Anyway, to preserve backwards compatibility, we'll have to implement this as a so-called "enforcing option" (that is: the behavior will have to be opt-in via a new linting rule).

I'm happy to assist anyone who wanted to write a patch for this. @KnickdaKnife since you suggested it, you get first dibs :) Let me know if you're interested!

from jshint.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.