You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/src/contribute/development-environment.md
+18-7
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ eleventyNavigation:
7
7
order: 6
8
8
---
9
9
10
+
{%- from 'components/npm_tabs.macro.html' import npm_tabs with context %}
11
+
10
12
ESLint has a very lightweight development environment that makes updating code fast and easy. This is a step-by-step guide to setting up a local development environment that will let you contribute back to the project.
11
13
12
14
## Step 1: Install Node.js
@@ -29,9 +31,14 @@ Once you've cloned the repository, run `npm install` to get all the necessary de
29
31
30
32
```shell
31
33
cd eslint
32
-
npm install
33
34
```
34
35
36
+
{{ npm_tabs({
37
+
command: "install",
38
+
packages: [],
39
+
args: []
40
+
}) }}
41
+
35
42
You must be connected to the Internet for this step to work. You'll see a lot of utilities being downloaded.
36
43
37
44
**Note:** It's a good idea to re-run `npm install` whenever you pull from the main repository to ensure you have the latest development dependencies.
@@ -52,15 +59,19 @@ Now, the remote `upstream` points to the upstream source.
52
59
53
60
[Yeoman](https://yeoman.io) is a scaffold generator that ESLint uses to help streamline development of new rules. If you don't already have Yeoman installed, you can install it via npm:
54
61
55
-
```shell
56
-
npm install -g yo
57
-
```
62
+
{{ npm_tabs({
63
+
command: "install",
64
+
packages: ["yo"],
65
+
args: ["--global"]
66
+
}) }}
58
67
59
68
Then, you can install the ESLint Yeoman generator:
60
69
61
-
```shell
62
-
npm install -g generator-eslint
63
-
```
70
+
{{ npm_tabs({
71
+
command: "install",
72
+
packages: ["generator-eslint"],
73
+
args: ["--global"]
74
+
}) }}
64
75
65
76
Please see the [generator documentation](https://github.com/eslint/generator-eslint) for instructions on how to use it.
Copy file name to clipboardexpand all lines: docs/src/extend/custom-parsers.md
+7-3
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ eleventyNavigation:
8
8
9
9
---
10
10
11
+
{%- from 'components/npm_tabs.macro.html' import npm_tabs with context %}
12
+
11
13
ESLint custom parsers let you extend ESLint to support linting new non-standard JavaScript language features or custom syntax in your code. A parser is responsible for taking your code and transforming it into an abstract syntax tree (AST) that ESLint can then analyze and lint.
12
14
13
15
## Creating a Custom Parser
@@ -117,9 +119,11 @@ For more information on publishing an npm package, refer to the [npm documentati
117
119
118
120
Once you've published the npm package, you can use it by adding the package to your project. For example:
119
121
120
-
```shell
121
-
npm install eslint-parser-myparser --save-dev
122
-
```
122
+
{{ npm_tabs({
123
+
command: "install",
124
+
packages: ["eslint-parser-myparser"],
125
+
args: ["--save-dev"]
126
+
}) }}
123
127
124
128
Then add the custom parser to your ESLint configuration file with the `languageOptions.parser` property. For example:
Copy file name to clipboardexpand all lines: docs/src/extend/custom-rule-tutorial.md
+27-15
Original file line number
Diff line number
Diff line change
@@ -6,6 +6,10 @@ eleventyNavigation:
6
6
title: Custom Rule Tutorial
7
7
order: 1
8
8
---
9
+
10
+
{%- from 'components/npm_tabs.macro.html' import npm_tabs with context %}
11
+
{%- from 'components/npx_tabs.macro.html' import npx_tabs %}
12
+
9
13
This tutorial covers how to create a custom rule for ESLint and distribute it with a plugin.
10
14
11
15
You can create custom rules to validate if your code meets a certain expectation, and determine what to do if it does not meet that expectation. Plugins package custom rules and other configuration, allowing you to easily share and reuse them in different projects.
Copy file name to clipboardexpand all lines: docs/src/extend/stats.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,8 @@ eleventyNavigation:
7
7
order: 6
8
8
---
9
9
10
+
{%- from 'components/npx_tabs.macro.html' import npx_tabs %}
11
+
10
12
While an analysis of the overall rule performance for an ESLint run can be carried out by setting the [TIMING](./custom-rules#profile-rule-performance) environment variable, it can sometimes be useful to acquire more *granular* timing data (lint time per file per rule) or collect other measures of interest. In particular, when developing new [custom plugins](./plugins) and evaluating/benchmarking new languages or rule sets. For these use cases, you can optionally collect runtime statistics from ESLint.
11
13
12
14
## Enable stats collection
@@ -51,9 +53,10 @@ function a() {
51
53
52
54
Run ESLint with `--stats` and output to JSON via the built-in [`json` formatter](../use/formatters/):
Copy file name to clipboardexpand all lines: docs/src/pages/flags.md
+6-3
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ eleventyNavigation:
8
8
order: 6
9
9
---
10
10
11
+
{%- from 'components/npx_tabs.macro.html' import npx_tabs %}
12
+
11
13
ESLint ships experimental and future breaking changes behind feature flags to let users opt-in to behavior they want. Flags are used in these situations:
12
14
13
15
1. When a feature is experimental and not ready to be enabled for everyone.
@@ -66,9 +68,10 @@ Because feature flags are strictly opt-in, you need to manually enable the flags
66
68
67
69
On the command line, you can specify feature flags using the `--flag` option. You can specify as many flags as you'd like:
0 commit comments