-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
23f4ddc
commit c37508a
Showing
4 changed files
with
25 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,31 @@ | ||
--- | ||
home: true | ||
actionText: Get Started → | ||
actionLink: /guide/getting-started | ||
features: | ||
- title: Scope Utilities | ||
details: Finding the specific global variables and their members with tracking assignments, finding variables, etc... | ||
- title: AST Utilities | ||
details: Computing the runtime value of a node, Getting the property name of a Property|MemberExpression|MemberExpression node, etc... | ||
- title: Token Utilities | ||
details: Distinguishing the token types of a given token, etc... | ||
--- | ||
|
||
<center> | ||
# Getting Started | ||
|
||
[![npm version](https://img.shields.io/npm/v/eslint-utils.svg)](https://www.npmjs.com/package/eslint-utils) | ||
[![Downloads/month](https://img.shields.io/npm/dm/eslint-utils.svg)](http://www.npmtrends.com/eslint-utils) | ||
[![Build Status](https://travis-ci.org/mysticatea/eslint-utils.svg?branch=master)](https://travis-ci.org/mysticatea/eslint-utils) | ||
[![Coverage Status](https://codecov.io/gh/mysticatea/eslint-utils/branch/master/graph/badge.svg)](https://codecov.io/gh/mysticatea/eslint-utils) | ||
[![Dependency Status](https://david-dm.org/mysticatea/eslint-utils.svg)](https://david-dm.org/mysticatea/eslint-utils) | ||
|
||
</center> | ||
## 🏁 Goal | ||
|
||
`eslint-utils` package provides utility functions and classes for make ESLint custom rules. | ||
|
||
## 💿 Installation | ||
|
||
Use [npm](https://www.npmjs.com/) or a compatible tool to install. | ||
|
||
``` | ||
npm install eslint-utils | ||
``` | ||
|
||
::: tip Requirements | ||
`eslint-utils` requires Node.js `6.5.0` or newer versions. | ||
::: | ||
|
||
## 📖 Usage | ||
|
||
```js | ||
const utils = require("eslint-utils") | ||
|
||
// use it to define rules... | ||
``` |
This file was deleted.
Oops, something went wrong.