UNPKG

17.4 kBMarkdownView Raw
1[![NPM version][npm-image]][npm-url]
2[![Build Status](https://dev.azure.com/eslint/eslint/_apis/build/status/eslint.eslint?branchName=master)](https://dev.azure.com/eslint/eslint/_build/latest?definitionId=1&branchName=master)
3[![Build Status](https://github.com/eslint/eslint/workflows/CI/badge.svg)](https://github.com/eslint/eslint/actions)
4[![Downloads][downloads-image]][downloads-url]
5[![Bountysource](https://www.bountysource.com/badge/tracker?tracker_id=282608)](https://www.bountysource.com/trackers/282608-eslint?utm_source=282608&utm_medium=shield&utm_campaign=TRACKER_BADGE)
6[![Join the chat at https://gitter.im/eslint/eslint](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/eslint/eslint?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
7[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint.svg?type=shield)](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint?ref=badge_shield)
8
9# ESLint
10
11[Website](https://eslint.org) |
12[Configuring](https://eslint.org/docs/user-guide/configuring) |
13[Rules](https://eslint.org/docs/rules/) |
14[Contributing](https://eslint.org/docs/developer-guide/contributing) |
15[Reporting Bugs](https://eslint.org/docs/developer-guide/contributing/reporting-bugs) |
16[Code of Conduct](https://js.foundation/community/code-of-conduct) |
17[Twitter](https://twitter.com/geteslint) |
18[Mailing List](https://groups.google.com/group/eslint) |
19[Chat Room](https://gitter.im/eslint/eslint)
20
21ESLint is a tool for identifying and reporting on patterns found in ECMAScript/JavaScript code. In many ways, it is similar to JSLint and JSHint with a few exceptions:
22
23* ESLint uses [Espree](https://github.com/eslint/espree) for JavaScript parsing.
24* ESLint uses an AST to evaluate patterns in code.
25* ESLint is completely pluggable, every single rule is a plugin and you can add more at runtime.
26
27## Table of Contents
28
291. [Installation and Usage](#installation-and-usage)
302. [Configuration](#configuration)
313. [Code of Conduct](#code-of-conduct)
324. [Filing Issues](#filing-issues)
335. [Frequently Asked Questions](#faq)
346. [Releases](#releases)
357. [Semantic Versioning Policy](#semantic-versioning-policy)
368. [License](#license)
379. [Team](#team)
3810. [Sponsors](#sponsors)
3911. [Technology Sponsors](#technology-sponsors)
40
41## <a name="installation-and-usage"></a>Installation and Usage
42
43Prerequisites: [Node.js](https://nodejs.org/) (`^8.10.0`, `^10.13.0`, or `>=11.10.1`) built with SSL support. (If you are using an official Node.js distribution, SSL is always built in.)
44
45You can install ESLint using npm:
46
47```
48$ npm install eslint --save-dev
49```
50
51You should then set up a configuration file:
52
53```
54$ ./node_modules/.bin/eslint --init
55```
56
57After that, you can run ESLint on any file or directory like this:
58
59```
60$ ./node_modules/.bin/eslint yourfile.js
61```
62
63## <a name="configuration"></a>Configuration
64
65After running `eslint --init`, you'll have a `.eslintrc` file in your directory. In it, you'll see some rules configured like this:
66
67```json
68{
69 "rules": {
70 "semi": ["error", "always"],
71 "quotes": ["error", "double"]
72 }
73}
74```
75
76The names `"semi"` and `"quotes"` are the names of [rules](https://eslint.org/docs/rules) in ESLint. The first value is the error level of the rule and can be one of these values:
77
78* `"off"` or `0` - turn the rule off
79* `"warn"` or `1` - turn the rule on as a warning (doesn't affect exit code)
80* `"error"` or `2` - turn the rule on as an error (exit code will be 1)
81
82The three error levels allow you fine-grained control over how ESLint applies rules (for more configuration options and details, see the [configuration docs](https://eslint.org/docs/user-guide/configuring)).
83
84## <a name="code-of-conduct"></a>Code of Conduct
85
86ESLint adheres to the [JS Foundation Code of Conduct](https://js.foundation/community/code-of-conduct).
87
88## <a name="filing-issues"></a>Filing Issues
89
90Before filing an issue, please be sure to read the guidelines for what you're reporting:
91
92* [Bug Report](https://eslint.org/docs/developer-guide/contributing/reporting-bugs)
93* [Propose a New Rule](https://eslint.org/docs/developer-guide/contributing/new-rules)
94* [Proposing a Rule Change](https://eslint.org/docs/developer-guide/contributing/rule-changes)
95* [Request a Change](https://eslint.org/docs/developer-guide/contributing/changes)
96
97## <a name="faq"></a>Frequently Asked Questions
98
99### I'm using JSCS, should I migrate to ESLint?
100
101Yes. [JSCS has reached end of life](https://eslint.org/blog/2016/07/jscs-end-of-life) and is no longer supported.
102
103We have prepared a [migration guide](https://eslint.org/docs/user-guide/migrating-from-jscs) to help you convert your JSCS settings to an ESLint configuration.
104
105We are now at or near 100% compatibility with JSCS. If you try ESLint and believe we are not yet compatible with a JSCS rule/configuration, please create an issue (mentioning that it is a JSCS compatibility issue) and we will evaluate it as per our normal process.
106
107### Does Prettier replace ESLint?
108
109No, ESLint does both traditional linting (looking for problematic patterns) and style checking (enforcement of conventions). You can use ESLint for everything, or you can combine both using Prettier to format your code and ESLint to catch possible errors.
110
111### Why can't ESLint find my plugins?
112
113* Make sure your plugins (and ESLint) are both in your project's `package.json` as devDependencies (or dependencies, if your project uses ESLint at runtime).
114* Make sure you have run `npm install` and all your dependencies are installed.
115* Make sure your plugins' peerDependencies have been installed as well. You can use `npm view eslint-plugin-myplugin peerDependencies` to see what peer dependencies `eslint-plugin-myplugin` has.
116
117### Does ESLint support JSX?
118
119Yes, ESLint natively supports parsing JSX syntax (this must be enabled in [configuration](https://eslint.org/docs/user-guide/configuring)). Please note that supporting JSX syntax *is not* the same as supporting React. React applies specific semantics to JSX syntax that ESLint doesn't recognize. We recommend using [eslint-plugin-react](https://www.npmjs.com/package/eslint-plugin-react) if you are using React and want React semantics.
120
121### What ECMAScript versions does ESLint support?
122
123ESLint has full support for ECMAScript 3, 5 (default), 2015, 2016, 2017, 2018, and 2019. You can set your desired ECMAScript syntax (and other settings, like global variables or your target environments) through [configuration](https://eslint.org/docs/user-guide/configuring).
124
125### What about experimental features?
126
127ESLint's parser only officially supports the latest final ECMAScript standard. We will make changes to core rules in order to avoid crashes on stage 3 ECMAScript syntax proposals (as long as they are implemented using the correct experimental ESTree syntax). We may make changes to core rules to better work with language extensions (such as JSX, Flow, and TypeScript) on a case-by-case basis.
128
129In other cases (including if rules need to warn on more or fewer cases due to new syntax, rather than just not crashing), we recommend you use other parsers and/or rule plugins. If you are using Babel, you can use the [babel-eslint](https://github.com/babel/babel-eslint) parser and [eslint-plugin-babel](https://github.com/babel/eslint-plugin-babel) to use any option available in Babel.
130
131Once a language feature has been adopted into the ECMAScript standard (stage 4 according to the [TC39 process](https://tc39.github.io/process-document/)), we will accept issues and pull requests related to the new feature, subject to our [contributing guidelines](https://eslint.org/docs/developer-guide/contributing). Until then, please use the appropriate parser and plugin(s) for your experimental feature.
132
133### Where to ask for help?
134
135Join our [Mailing List](https://groups.google.com/group/eslint) or [Chatroom](https://gitter.im/eslint/eslint).
136
137## <a name="releases"></a>Releases
138
139We have scheduled releases every two weeks on Friday or Saturday. You can follow a [release issue](https://github.com/eslint/eslint/issues?q=is%3Aopen+is%3Aissue+label%3Arelease) for updates about the scheduling of any particular release.
140
141## <a name="semantic-versioning-policy"></a>Semantic Versioning Policy
142
143ESLint follows [semantic versioning](https://semver.org). However, due to the nature of ESLint as a code quality tool, it's not always clear when a minor or major version bump occurs. To help clarify this for everyone, we've defined the following semantic versioning policy for ESLint:
144
145* Patch release (intended to not break your lint build)
146 * A bug fix in a rule that results in ESLint reporting fewer errors.
147 * A bug fix to the CLI or core (including formatters).
148 * Improvements to documentation.
149 * Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.
150 * Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).
151* Minor release (might break your lint build)
152 * A bug fix in a rule that results in ESLint reporting more errors.
153 * A new rule is created.
154 * A new option to an existing rule that does not result in ESLint reporting more errors by default.
155 * An existing rule is deprecated.
156 * A new CLI capability is created.
157 * New capabilities to the public API are added (new classes, new methods, new arguments to existing methods, etc.).
158 * A new formatter is created.
159 * `eslint:recommended` is updated and will result in strictly fewer errors (e.g., rule removals).
160* Major release (likely to break your lint build)
161 * `eslint:recommended` is updated and may result in new errors (e.g., rule additions, most rule option updates).
162 * A new option to an existing rule that results in ESLint reporting more errors by default.
163 * An existing formatter is removed.
164 * Part of the public API is removed or changed in an incompatible way.
165
166According to our policy, any minor update may report more errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (`~`) in `package.json` e.g. `"eslint": "~3.1.0"` to guarantee the results of your builds.
167
168## <a name="license"></a>License
169
170[![FOSSA Status](https://app.fossa.io/api/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint.svg?type=large)](https://app.fossa.io/projects/git%2Bhttps%3A%2F%2Fgithub.com%2Feslint%2Feslint?ref=badge_large)
171
172## <a name="team"></a>Team
173
174These folks keep the project moving and are resources for help.
175
176<!-- NOTE: This section is autogenerated. Do not manually edit.-->
177<!--teamstart-->
178
179### Technical Steering Committee (TSC)
180
181The people who manage releases, review feature requests, and meet regularly to ensure ESLint is properly maintained.
182
183<table><tbody><tr><td align="center" valign="top" width="11%">
184<a href="https://github.com/nzakas">
185<img src="https://github.com/nzakas.png?s=75" width="75" height="75"><br />
186Nicholas C. Zakas
187</a>
188</td><td align="center" valign="top" width="11%">
189<a href="https://github.com/platinumazure">
190<img src="https://github.com/platinumazure.png?s=75" width="75" height="75"><br />
191Kevin Partington
192</a>
193</td><td align="center" valign="top" width="11%">
194<a href="https://github.com/ilyavolodin">
195<img src="https://github.com/ilyavolodin.png?s=75" width="75" height="75"><br />
196Ilya Volodin
197</a>
198</td><td align="center" valign="top" width="11%">
199<a href="https://github.com/btmills">
200<img src="https://github.com/btmills.png?s=75" width="75" height="75"><br />
201Brandon Mills
202</a>
203</td><td align="center" valign="top" width="11%">
204<a href="https://github.com/mysticatea">
205<img src="https://github.com/mysticatea.png?s=75" width="75" height="75"><br />
206Toru Nagashima
207</a>
208</td><td align="center" valign="top" width="11%">
209<a href="https://github.com/gyandeeps">
210<img src="https://github.com/gyandeeps.png?s=75" width="75" height="75"><br />
211Gyandeep Singh
212</a>
213</td><td align="center" valign="top" width="11%">
214<a href="https://github.com/not-an-aardvark">
215<img src="https://github.com/not-an-aardvark.png?s=75" width="75" height="75"><br />
216Teddy Katz
217</a>
218</td></tr></tbody></table>
219
220
221### Reviewers
222
223The people who review and implement new features.
224
225<table><tbody><tr><td align="center" valign="top" width="11%">
226<a href="https://github.com/aladdin-add">
227<img src="https://github.com/aladdin-add.png?s=75" width="75" height="75"><br />
228薛定谔的猫
229</a>
230</td></tr></tbody></table>
231
232
233
234
235### Committers
236
237The people who review and fix bugs and help triage issues.
238
239<table><tbody><tr><td align="center" valign="top" width="11%">
240<a href="https://github.com/kaicataldo">
241<img src="https://github.com/kaicataldo.png?s=75" width="75" height="75"><br />
242Kai Cataldo
243</a>
244</td><td align="center" valign="top" width="11%">
245<a href="https://github.com/g-plane">
246<img src="https://github.com/g-plane.png?s=75" width="75" height="75"><br />
247Pig Fang
248</a>
249</td><td align="center" valign="top" width="11%">
250<a href="https://github.com/mdjermanovic">
251<img src="https://github.com/mdjermanovic.png?s=75" width="75" height="75"><br />
252Milos Djermanovic
253</a>
254</td></tr></tbody></table>
255
256
257<!--teamend-->
258
259## <a name="sponsors"></a>Sponsors
260
261The following companies, organizations, and individuals support ESLint's ongoing maintenance and development. [Become a Sponsor](https://opencollective.com/eslint) to get your logo on our README and website.
262
263<!-- NOTE: This section is autogenerated. Do not manually edit.-->
264<!--sponsorsstart-->
265<h3>Gold Sponsors</h3>
266<p><a href="https://www.shopify.com"><img src="https://images.opencollective.com/shopify/eeb91aa/logo.png" alt="Shopify" height="96"></a> <a href="http://engineering.salesforce.com"><img src="https://images.opencollective.com/salesforce/ca8f997/logo.png" alt="Salesforce" height="96"></a> <a href="https://badoo.com/team?utm_source=eslint"><img src="https://images.opencollective.com/badoo/2826a3b/logo.png" alt="Badoo" height="96"></a> <a href="https://www.airbnb.com/"><img src="https://images.opencollective.com/airbnb/d327d66/logo.png" alt="Airbnb" height="96"></a> <a href="https://opensource.facebook.com"><img src="https://images.opencollective.com/fbopensource/fbb8a5b/logo.png" alt="Facebook Open Source" height="96"></a></p><h3>Silver Sponsors</h3>
267<p><a href="https://www.ampproject.org/"><img src="https://images.opencollective.com/amp/c8a3b25/logo.png" alt="AMP Project" height="64"></a></p><h3>Bronze Sponsors</h3>
268<p><a href="https://uxplanet.org/top-ui-ux-design-agencies-user-experience-firms-8c54697e290"><img src="https://images.opencollective.com/ui-ux-design-agencies/cae5dfe/logo.png" alt="UI UX Design Agencies" height="32"></a> <a href="https://www.bugsnag.com/platforms?utm_source=Open Collective&utm_medium=Website&utm_content=open-source&utm_campaign=2019-community&utm_term="><img src="https://images.opencollective.com/bugsnag-stability-monitoring/c2cef36/logo.png" alt="Bugsnag Stability Monitoring" height="32"></a> <a href="https://www.minitool.com"><img src="https://images.opencollective.com/minitool-software-ltd/6d68e16/logo.png" alt="MiniTool Software Ltd" height="32"></a> <a href="https://www.codacy.com/?utm_source=eslint&utm_medium=cpm&utm_campaign=eslint-sponsorship"><img src="https://images.opencollective.com/codacy/ed22716/logo.png" alt="Codacy" height="32"></a> <a href="https://mixpanel.com"><img src="https://images.opencollective.com/mixpanel/cd682f7/logo.png" alt="Mixpanel" height="32"></a> <a href="https://www.vpsserver.com"><img src="https://images.opencollective.com/vpsservercom/logo.png" alt="VPS Server" height="32"></a> <a href="https://icons8.com"><img src="https://images.opencollective.com/icons8/0b37d14/logo.png" alt="Free Icons by Icons8" height="32"></a> <a href="https://www.crosswordsolver.com"><img src="https://images.opencollective.com/crosswordsolver/d4481d6/logo.png" alt="Crosswordsolver" height="32"></a> <a href="https://clay.global"><img src="https://images.opencollective.com/clayglobal/2468f34/logo.png" alt="clay" height="32"></a> <a href="https://discordapp.com"><img src="https://images.opencollective.com/discordapp/7e3d9a9/logo.png" alt="Discord" height="32"></a> <a href="https://themeisle.com"><img src="https://images.opencollective.com/themeisle/logo.png" alt="ThemeIsle" height="32"></a> <a href="https://tekhattan.com"><img src="https://images.opencollective.com/tekhattan/bc73c28/logo.png" alt="TekHattan" height="32"></a> <a href="https://www.marfeel.com/"><img src="https://images.opencollective.com/marfeel/4b88e30/logo.png" alt="Marfeel" height="32"></a> <a href="http://www.firesticktricks.com"><img src="https://images.opencollective.com/fire-stick-tricks/b8fbe2c/logo.png" alt="Fire Stick Tricks" height="32"></a> <a href="https://jsheroes.io/"><img src="https://images.opencollective.com/jsheroes1/9fedf0b/logo.png" alt="JSHeroes " height="32"></a></p>
269<!--sponsorsend-->
270
271## <a name="technology-sponsors"></a>Technology Sponsors
272
273* Site search ([eslint.org](https://eslint.org)) is sponsored by [Algolia](https://www.algolia.com)
274
275
276[npm-image]: https://img.shields.io/npm/v/eslint.svg?style=flat-square
277[npm-url]: https://www.npmjs.com/package/eslint
278[downloads-image]: https://img.shields.io/npm/dm/eslint.svg?style=flat-square
279[downloads-url]: https://www.npmjs.com/package/eslint