
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
babel-eslint
Advanced tools
babel-eslint allows you to lint ALL valid Babel code with the fantastic ESLint.
You only need to use babel-eslint if you are using types (Flow) or experimental features not supported in ESLint itself yet. Otherwise try the default parser (you don't have to use it just because you are using Babel).
If there is an issue, first check if it can be reproduced with the regular parser or with the latest versions of
eslintandbabel-eslint!
For questions and support please visit the #discussion babel slack channel (sign up here) or eslint gitter!
Note that the
ecmaFeaturesconfig property may still be required for ESLint to work properly with features not in ECMAScript 5 by default. Examples areglobalReturnandmodules).
Flow:
Check out eslint-plugin-flowtype: An
eslintplugin that makes flow type annotations global variables and marks declarations as used. Solves the problem of false positives withno-undefandno-unused-vars.
no-undef for global flow types: ReactElement, ReactClass #130
.eslintrc or define types and import them import type ReactElement from './types'no-unused-vars/no-undef with Flow declarations (declare module A {}) #132Modules/strict mode
no-unused-vars: [2, {vars: local}] #136Please check out eslint-plugin-react for React/JSX issues
no-unused-vars with jsxPlease check out eslint-plugin-babel for other issues
ESLint allows custom parsers. This is great but some of the syntax nodes that Babel supports aren't supported by ESLint. When using this plugin, ESLint is monkeypatched and your code is transformed into code that ESLint can understand. All location info such as line numbers, columns is also retained so you can track down errors with ease.
Basically babel-eslint exports an index.js that a linter can use.
It just needs to export a parse method that takes in a string of code and outputs an AST.
| ESLint | babel-eslint |
|---|---|
| 4.x | >= 6.x |
| 3.x | >= 6.x |
| 2.x | >= 6.x |
| 1.x | >= 5.x |
Ensure that you have substituted the correct version lock for eslint and babel-eslint into this command:
$ npm install eslint@4.x babel-eslint@8 --save-dev
# or
$ yarn add eslint@4.x babel-eslint@8 -D
.eslintrc
{
"parser": "babel-eslint",
"rules": {
"strict": 0
}
}
Check out the ESLint docs for all possible rules.
sourceType can be set to 'module'(default) or 'script' if your code isn't using ECMAScript modules.allowImportExportEverywhere (default false) can be set to true to allow import and export declarations to appear anywhere a statement is allowed if your build environment supports that. Otherwise import and export declarations can only appear at a program's top level.codeFrame (default true) can be set to false to disable the code frame in the reporter. This is useful since some eslint formatters don't play well with it..eslintrc
{
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"allowImportExportEverywhere": false,
"codeFrame": true
}
}
$ eslint your-files-here
This package is a parser that allows ESLint to lint TypeScript code. It is similar to babel-eslint in that it extends ESLint's capabilities to understand syntax not natively supported by ESLint. However, it is specifically designed for TypeScript, whereas babel-eslint is focused on Babel-specific JavaScript syntax.
This package is an ESLint plugin that provides linting rules for Flow, a static type checker for JavaScript. Like babel-eslint, it extends ESLint's functionality to additional syntax features, but it is tailored for Flow type annotations rather than Babel's JavaScript transformations.
Prettier is an opinionated code formatter that supports many languages, including JavaScript. While it is not a linter like ESLint or a parser like babel-eslint, it is often used in conjunction with ESLint to enforce consistent code formatting. Prettier can parse and format code with Babel-specific syntax when used with the appropriate plugins.
FAQs
Custom parser for ESLint
The npm package babel-eslint receives a total of 2,920,992 weekly downloads. As such, babel-eslint popularity was classified as popular.
We found that babel-eslint demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.