Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8879565
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T19:58:38+00:00 2026-06-14T19:58:38+00:00

I have some JavaScript files that should be linted assuming a Node environment and

  • 0

I have some JavaScript files that should be linted assuming a Node environment and others that should be linted assuming a browser environment. How do I lint these files with different JSHint options? Here’s my starting point:

module.exports = function (grunt) {
  grunt.initConfig({
    lint: {
      files: [
        "grunt.js", // Node environment
        "lib/**/*.js", // browser environment
      ],
    },
    jshint: {
      options: {
        browser: true, // define globals exposed by modern browsers?
        es5: true, // code uses ECMAScript 5 features?
        node: false, // define globals in Node runtime?
      },
      globals: {},
    },
  });

  grunt.registerTask("default", "lint");
};
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T19:58:39+00:00Added an answer on June 14, 2026 at 7:58 pm

    Actually, it’s pretty easy: https://github.com/gruntjs/grunt/blob/master/docs/task_lint.md#per-target-jshint-options-and-globals

    // Project configuration.
    grunt.initConfig({
      lint: {
        src: 'src/*.js',
        grunt: 'grunt.js',
        tests: 'tests/unit/**/*.js'
      },
      jshint: {
        // Defaults.
        options: {curly: true},
        globals: {},
        // Just for the lint:grunt target.
        grunt: {
          options: {node: true},
          globals: {task: true, config: true, file: true, log: true, template: true}
        },
        // Just for the lint:src target.
        src: {
          options: {browser: true},
          globals: {jQuery: true}
        },
        // Just for the lint:tests target.
        tests: {
          options: {jquery: true},
          globals: {module: true, test: true, ok: true, equal: true, deepEqual: true, QUnit: true}
        }
      }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some pages that reference javascript files. The application exists locally in a
I have some javascript that I am using for some audio on my website:
I have some javascript that goes out and fetches a javascript class on another
i have some javascript roll over code that works fine in firefox but when
I have some Javascript code that will programmatically register an COM interop assembly by
I've inherited a high-traffic site that loads some Ext javascript files and I'm trying
I have an html page that calls some javascript and jQuery functions and also
I have a project that I borrowed some JavaScript from a lab that I
I'm having trouble with caching on my website. I have static files that should
I have the following code layout <script src=http://some.javascript/file.js></script> // This should load first <script

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.