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/architecture/index.md
+31-31
Original file line number
Diff line number
Diff line change
@@ -30,17 +30,17 @@ The main method is `cli.execute()`, which accepts an array of strings that repre
30
30
31
31
This object's responsibilities include:
32
32
33
-
* Interpreting command line arguments
34
-
* Reading from the file system
35
-
* Outputting to the console
36
-
* Outputting to the filesystem
37
-
* Use a formatter
38
-
* Returning the correct exit code
33
+
* Interpreting command line arguments.
34
+
* Reading from the file system.
35
+
* Outputting to the console.
36
+
* Outputting to the filesystem.
37
+
* Use a formatter.
38
+
* Returning the correct exit code.
39
39
40
40
This object may not:
41
41
42
-
* Call `process.exit()` directly
43
-
* Perform any asynchronous operations
42
+
* Call `process.exit()` directly.
43
+
* Perform any asynchronous operations.
44
44
45
45
## The `CLIEngine` object
46
46
@@ -50,16 +50,16 @@ The main method of the `CLIEngine` is `executeOnFiles()`, which accepts an array
50
50
51
51
This object's responsibilities include:
52
52
53
-
* Managing the execution environment for `Linter`
54
-
* Reading from the file system
55
-
* Reading configuration information from config files (including `.eslintrc` and `package.json`)
53
+
* Managing the execution environment for `Linter`.
54
+
* Reading from the file system.
55
+
* Reading configuration information from config files (including `.eslintrc` and `package.json`).
56
56
57
57
This object may not:
58
58
59
-
* Call `process.exit()` directly
60
-
* Perform any asynchronous operations
61
-
* Output to the console
62
-
* Use formatters
59
+
* Call `process.exit()` directly.
60
+
* Perform any asynchronous operations.
61
+
* Output to the console.
62
+
* Use formatters.
63
63
64
64
## The `Linter` object
65
65
@@ -69,32 +69,32 @@ Once the AST is available, `estraverse` is used to traverse the AST from top to
69
69
70
70
This object's responsibilities include:
71
71
72
-
* Inspecting JavaScript code strings
73
-
* Creating an AST for the code
74
-
* Executing rules on the AST
75
-
* Reporting back the results of the execution
72
+
* Inspecting JavaScript code strings.
73
+
* Creating an AST for the code.
74
+
* Executing rules on the AST.
75
+
* Reporting back the results of the execution.
76
76
77
77
This object may not:
78
78
79
-
* Call `process.exit()` directly
80
-
* Perform any asynchronous operations
81
-
* Use Node.js-specific features
82
-
* Access the file system
83
-
* Call `console.log()` or any other similar method
79
+
* Call `process.exit()` directly.
80
+
* Perform any asynchronous operations.
81
+
* Use Node.js-specific features.
82
+
* Access the file system.
83
+
* Call `console.log()` or any other similar method.
84
84
85
85
## Rules
86
86
87
87
Individual rules are the most specialized part of the ESLint architecture. Rules can do very little, they are simply a set of instructions executed against an AST that is provided. They do get some context information passed in, but the primary responsibility of a rule is to inspect the AST and report warnings.
88
88
89
89
These objects' responsibilities are:
90
90
91
-
* Inspect the AST for specific patterns
92
-
* Reporting warnings when certain patterns are found
91
+
* Inspect the AST for specific patterns.
92
+
* Reporting warnings when certain patterns are found.
93
93
94
94
These objects may not:
95
95
96
-
* Call `process.exit()` directly
97
-
* Perform any asynchronous operations
98
-
* Use Node.js-specific features
99
-
* Access the file system
100
-
* Call `console.log()` or any other similar method
96
+
* Call `process.exit()` directly.
97
+
* Perform any asynchronous operations.
98
+
* Use Node.js-specific features.
99
+
* Access the file system.
100
+
* Call `console.log()` or any other similar method.
Copy file name to clipboardexpand all lines: docs/src/contribute/governance.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -40,8 +40,8 @@ Website Team Members are community members who have shown that they are committe
40
40
* Are expected to delete their public branches when they are no longer necessary.
41
41
* Must submit pull requests for all changes.
42
42
* Have their work reviewed by Reviewers and TSC members before acceptance into the repository.
43
-
* May label and close website-related issues (see [Manage Issues](../maintain/manage-issues))
44
-
* May merge some pull requests (see [Review Pull Requests](../maintain/review-pull-requests))
43
+
* May label and close website-related issues (see [Manage Issues](../maintain/manage-issues)).
44
+
* May merge some pull requests (see [Review Pull Requests](../maintain/review-pull-requests)).
45
45
* May take time off whenever they want, and are expected to post in the `#team` Discord channel when they will be away for more than a couple of days.
46
46
47
47
To become a Website Team Member:
@@ -70,8 +70,8 @@ Committers:
70
70
* Are expected to work on at least one issue in the "Ready to Implement" column of the [Triage Board](https://github.com/orgs/eslint/projects/3/views/1) that they didn't create each month.
71
71
* Must submit pull requests for all changes.
72
72
* Have their work reviewed by TSC members before acceptance into the repository.
73
-
* May label and close issues (see [Manage Issues](../maintain/manage-issues))
74
-
* May merge some pull requests (see [Review Pull Requests](../maintain/review-pull-requests))
73
+
* May label and close issues (see [Manage Issues](../maintain/manage-issues)).
74
+
* May merge some pull requests (see [Review Pull Requests](../maintain/review-pull-requests)).
75
75
* May take time off whenever they want, and are expected to post in the `#team` Discord channel when they will be away for more than a couple of days.
Copy file name to clipboardexpand all lines: docs/src/contribute/package-json-conventions.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -74,7 +74,7 @@ A test script SHOULD report test coverage when possible.
74
74
75
75
## Modifiers
76
76
77
-
One or more of the following modifiers MAY be appended to the standard script names above. If a target has modifiers, they MUST be in the order in which they appear below (e.g. `lint:fix:js:watch` not `lint:watch:js:fix`)
77
+
One or more of the following modifiers MAY be appended to the standard script names above. If a target has modifiers, they MUST be in the order in which they appear below (e.g. `lint:fix:js:watch` not `lint:watch:js:fix`).
78
78
79
79
### Fix
80
80
@@ -86,7 +86,7 @@ The name of the target of the action being run. In the case of a `build` script,
86
86
87
87
A target MAY refer to a list of affected file extensions (such as `cjs` or `less`) delimited by a `+`. If there is more than one extension, the list SHOULD be alphabetized. When a file extension has variants (such as `cjs` for CommonJS and `mjs` for ESM), the common part of the extension MAY be used instead of explicitly listing out all of the variants (e.g. `js` instead of `cjs+jsx+mjs`).
88
88
89
-
The target SHOULD NOT refer to name of the name of the tool that's performing the action (`eleventy`, `webpack`, etc.)
89
+
The target SHOULD NOT refer to name of the name of the tool that's performing the action (`eleventy`, `webpack`, etc.).
Copy file name to clipboardexpand all lines: docs/src/contribute/propose-new-rule.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -34,9 +34,9 @@ We need all of this information in order to determine whether or not the rule is
34
34
35
35
In order for a rule to be accepted in the ESLint core, it must:
36
36
37
-
1. Fulfill all the criteria listed in the "Core Rule Guidelines" section
38
-
1. Have an ESLint team member champion inclusion of the rule
39
-
1. Be related to an ECMAScript feature that has reached stage 4 in the preceding 12 months
37
+
1. Fulfill all the criteria listed in the "Core Rule Guidelines" section.
38
+
1. Have an ESLint team member champion inclusion of the rule.
39
+
1. Be related to an ECMAScript feature that has reached stage 4 in the preceding 12 months.
40
40
41
41
Keep in mind that we have over 200 rules, and that is daunting both for end users and the ESLint team (who has to maintain them). As such, any new rules must be deemed of high importance to be considered for inclusion in ESLint.
Copy file name to clipboardexpand all lines: docs/src/extend/custom-rules.md
+7-7
Original file line number
Diff line number
Diff line change
@@ -207,9 +207,9 @@ The node contains all the information necessary to figure out the line and colum
207
207
208
208
`messageId`s are the recommended approach to reporting messages in `context.report()` calls because of the following benefits:
209
209
210
-
* Rule violation messages can be stored in a central `meta.messages` object for convenient management
211
-
* Rule violation messages do not need to be repeated in both the rule file and rule test file
212
-
* As a result, the barrier for changing rule violation messages is lower, encouraging more frequent contributions to improve and optimize them for the greatest clarity and usefulness
210
+
* Rule violation messages can be stored in a central `meta.messages` object for convenient management.
211
+
* Rule violation messages do not need to be repeated in both the rule file and rule test file.
212
+
* As a result, the barrier for changing rule violation messages is lower, encouraging more frequent contributions to improve and optimize them for the greatest clarity and usefulness.
213
213
214
214
Rule file:
215
215
@@ -654,11 +654,11 @@ There are two formats for a rule's `schema`:
654
654
655
655
* An array of JSON Schema objects
656
656
* Each element will be checked against the same position in the `context.options` array.
657
-
* If the `context.options` array has fewer elements than there are schemas, then the unmatched schemas are ignored
658
-
* If the `context.options` array has more elements than there are schemas, then the validation fails
657
+
* If the `context.options` array has fewer elements than there are schemas, then the unmatched schemas are ignored.
658
+
* If the `context.options` array has more elements than there are schemas, then the validation fails.
659
659
* There are two important consequences to using this format:
660
-
* It is _always valid_ for a user to provide no options to your rule (beyond severity)
661
-
* If you specify an empty array, then it is _always an error_ for a user to provide any options to your rule (beyond severity)
660
+
* It is _always valid_ for a user to provide no options to your rule (beyond severity).
661
+
* If you specify an empty array, then it is _always an error_ for a user to provide any options to your rule (beyond severity).
662
662
* A full JSON Schema object that will validate the `context.options` array
663
663
* The schema should assume an array of options to validate even if your rule only accepts one option.
664
664
* The schema can be arbitrarily complex, so you can validate completely different sets of potential options via `oneOf`, `anyOf` etc.
0 commit comments