eslint-plugin-consistent-default-export-name

v0.0.15
eslint plugin with rules to help use default export names consistently throughout the project
eslint eslintplugin eslint-plugin default export default import

eslint-plugin-consistent-default-export-name

Adds rules to help use consistent "default export" names throughout the project.

This plugin is basically a repackaging of two rules, each from two separate plugins:

  1. default-export-match-filename: checks when filename does not match its default export name default-export-match-filename.png

  2. default-import-match-filename: checks when default import name does not match its source filename default-import-match-filename.png

If both rules are activated, default names will be consistent overall.

I DID NOT WRITE THE RULES

  • Thanks to @selaux who wrote the rule (filenames/match-exported) and made eslint-plugin-filenames
  • Thanks to @golopot who wrote the rule and made PR to eslint-plugin-import

How To Use

  1. either extend config which enables both rules

    {
        "extends": ["plugin:consistent-default-export-name/fixed"]
    }
    

    which, sets below

    {
        "rules": {
            "consistent-default-export-name/default-export-match-filename": "error",
            "consistent-default-export-name/default-import-match-filename": "error"
        }
    }
    
  2. or set rules inidividually

    {
        "rules": {
            "consistent-default-export-name/default-export-match-filename": "error",
        }
    }
    

Rule Option & Documentation

Installation

npm install eslint-plugin-consistent-default-export-name --save-dev
yarn add -D eslint-plugin-consistent-default-export-name

Supported Rules

  • default-export-match-filename
  • default-import-match-filename

Github

https://github.com/minseoksuh/eslint-plugin-consistent-default-export-name/blob/main/README.md

npm i eslint-plugin-consistent-default-export-name

Metadata

  • MIT
  • >=0.10.0
  • minseoksuh
  • released 5/14/2022

Downloads

Maintainers