Skip to content

Latest commit

 

History

History
42 lines (25 loc) · 1.33 KB

index.md

File metadata and controls

42 lines (25 loc) · 1.33 KB
title eleventyNavigation
Extend ESLint
key title order
extend eslint
Extend ESLint
2

This guide is intended for those who wish to extend the functionality of ESLint.

In order to extend ESLint, it's recommended that:

  • You know JavaScript, since ESLint is written in JavaScript.
  • You have some familiarity with Node.js, since ESLint runs on it.
  • You're comfortable with command-line programs.

If that sounds like you, then continue reading to get started.

You've developed custom rules for ESLint and you want to share them with the community. You can publish an ESLint plugin on npm.

This section explains how to create custom rules to use with ESLint.

This section explains how you can create a custom formatter to control what ESLint outputs.

If you don't want to use the default parser of ESLint, this section explains how to create custom parsers.

This section explains how you can bundle and share ESLint configuration in a JavaScript package.

If you're interested in writing a tool that uses ESLint, then you can use the Node.js API to get programmatic access to functionality.