Socket
Socket
Sign inDemoInstall

@babel/eslint-parser

Package Overview
Dependencies
Maintainers
4
Versions
69
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@babel/eslint-parser

ESLint parser that allows for linting of experimental syntax transformed by Babel


Version published
Weekly downloads
7.4M
decreased by-1.22%
Maintainers
4
Weekly downloads
 
Created

What is @babel/eslint-parser?

The @babel/eslint-parser package is an ESLint parser that allows you to lint all valid Babel code with ESLint. It is designed to be used with ESLint and Babel, enabling developers to use ESLint on code that contains Babel-specific syntax. The parser is compatible with the latest JavaScript features and experimental syntax, allowing developers to write modern JavaScript without worrying about linting issues.

What are @babel/eslint-parser's main functionalities?

Parsing Babel Code

This feature allows you to parse Babel code with ESLint. The code sample shows how to configure ESLint to use @babel/eslint-parser in an ESLint configuration file.

module.exports = {
  parser: '@babel/eslint-parser',
  parserOptions: {
    requireConfigFile: false,
    babelOptions: {
      presets: ['@babel/preset-env']
    }
  }
};

Using with ESLint and Babel

This feature integrates ESLint with Babel, allowing you to apply ESLint rules to Babel code. The code sample provides an example of an ESLint configuration that uses @babel/eslint-parser and specifies some ESLint rules.

module.exports = {
  extends: ['eslint:recommended'],
  parser: '@babel/eslint-parser',
  env: {
    browser: true,
    es6: true
  },
  rules: {
    'no-unused-vars': 'warn',
    'no-console': 'off'
  }
};

Other packages similar to @babel/eslint-parser

FAQs

Package last updated on 11 Jul 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc