Coder Social home page Coder Social logo

Comments (4)

smikes avatar smikes commented on July 17, 2024

The jslint comment is for sending options to jslint, about ignoring whitespace or whatever. If what you want to do is declare a pre-existing read/write global named W020 then the comment syntax is:

/*global W020: true*/

as a directive I think it would be

directives: {
  predef: ['W020']
}

but I'm not sure if that would be read-write. Try the comment syntax first.

from grunt-jslint.

klassicd avatar klassicd commented on July 17, 2024

I'm sorry you misunderstood my issue. I am trying to use the Bluebird library. The following code to include the library (from test-file.js):

var Promise = require("bluebird");

results in the following error:

test-file.js:1:5 Read only.

The jslint documentation for this error link says you should include the following comment:

/*jshint -W020 */

This is not working for me.

from grunt-jslint.

smikes avatar smikes commented on July 17, 2024

That's a jshint directive, and it won't work on jslint.

You might want something more like

/*global Promise:true*/

if your goal is to allow writes to the Promise global.

from grunt-jslint.

klassicd avatar klassicd commented on July 17, 2024

Thanks for the help.

/*global Promise:true*/

did not work from test-file.js. I didn't attempt to modify the Bluebird library directly so I resorted to the Gruntfile config:

{directives: {predef: ['Promise']}}

from grunt-jslint.

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.