eslint-scope
ECMAScript scope analyzer for ESLint
Last updated 6 years ago by eslint .
BSD-2-Clause · Repository · Bugs · Original npm · Tarball · package.json
$ npm install eslint-scope 
SYNC missed versions from official npm registry.

ESLint Scope

ESLint Scope is the ECMAScript scope analyzer used in ESLint. It is a fork of escope.

Usage

Install:

npm i eslint-scope --save

Example:

var eslintScope = require('eslint-scope');
var espree = require('espree');
var estraverse = require('estraverse');

var ast = espree.parse(code);
var scopeManager = eslintScope.analyze(ast);

var currentScope = scopeManager.acquire(ast);   // global scope

estraverse.traverse(ast, {
    enter: function(node, parent) {
        // do stuff

        if (/Function/.test(node.type)) {
            currentScope = scopeManager.acquire(node);  // get current function scope
        }
    },
    leave: function(node, parent) {
        if (/Function/.test(node.type)) {
            currentScope = currentScope.upper;  // set to parent scope
        }

        // do stuff
    }
});

Contributing

Issues and pull requests will be triaged and responded to as quickly as possible. We operate under the ESLint Contributor Guidelines, so please be sure to read them before contributing. If you're not sure where to dig in, check out the issues.

Build Commands

  • npm test - run all linting and tests
  • npm run lint - run all linting

License

ESLint Scope is licensed under a permissive BSD 2-clause license.

Current Tags

  • 8.2.0                                ...           latest (16 days ago)
  • 4.0.0-rc.0                                ...           next (6 years ago)
  • 3.7.3                                ...           v3-latest (6 years ago)

24 Versions

  • 8.2.0                                ...           16 days ago
  • 8.1.0                                ...           2 months ago
  • 8.0.2                                ...           4 months ago
  • 8.0.1                                ...           8 months ago
  • 8.0.0                                ...           10 months ago
  • 7.2.2                                ...           a year ago
  • 7.2.1                                ...           a year ago
  • 7.2.0                                ...           2 years ago
  • 7.1.1                                ...           3 years ago
  • 7.1.0                                ...           3 years ago
  • 7.0.0                                ...           3 years ago
  • 6.0.0                                ...           3 years ago
  • 5.1.1                                ...           4 years ago
  • 5.1.0                                ...           4 years ago
  • 5.0.0                                ...           5 years ago
  • 4.0.3                                ...           6 years ago
  • 4.0.2                                ...           6 years ago
  • 4.0.1                                ...           6 years ago
  • 3.7.3                                ...           6 years ago
  • 4.0.0                                ...           6 years ago
  • 4.0.0-rc.0                                ...           6 years ago
  • 4.0.0-alpha.0                                ...           7 years ago
  • 3.7.1                                ...           8 years ago
  • 3.7.0                                ...           8 years ago
Downloads
Total 19
Today 1
This Week 1
This Month 1
Last Day 0
Last Week 0
Last Month 0
Dependencies (2)
Dev Dependencies (11)

© 2010 - cnpmjs.org x YWFE | Home | YWFE