3.0.4 • Published 2 years ago

eslint-plugin-node-roikoren v3.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

eslint-plugin-node-roikoren

Test Status codecov

Bugs Code Smells Maintainability Rating Reliability Rating Security Rating Technical Debt Vulnerabilities

Snyk Vulnerabilities for GitHub Repo

npm NPM npm npm bundle size

GitHub issues GitHub pull requests GitHub code size in bytes Lines of code GitHub top language

A re implementation of eslint-plugin-node in TypeScript.

Disclaimer

First off, I would like to deeply thank @mistycatea and everyone else involved in the original eslint-plugin-node. None of this would have been possible without them, and all credit should go to them.

This package is an attempt to migrate eslint-plugin-node to be written in TypeScript, and to use the great @typescript-eslint repository for plugin development.

Below is taken verbatim from eslint-plugin-node, and will be updated as needed.

💿 Install & Usage

Use npm or a compatible tool.

npm install --save-dev eslint eslint-plugin-node-roikoren

yarn add -D eslint eslint-plugin-node-roikoren

IMPORTANT

If you installed eslint globally, you should install this plugin in the same way.

Requirements

  • Node.js 12.22.0 or newer.
  • ESLint 5.16.0 or newer.

Note: It recommends a use of the "engines" field of package.json. The "engines" field is used by node/no-unsupported-features/* rules.

.eslintrc.json (An example)

{
  "extends": [
    "eslint:recommended",
    "plugin:node-roikoren/recommended"
  ],
  "parserOptions": {
    "ecmaVersion": 2020
  },
  "rules": {
    "node-roikoren/exports-style": ["error", "module.exports"],
    "node-roikoren/file-extension-in-import": ["error", "always"],
    "node-roikoren/prefer-global/buffer": ["error", "always"],
    "node-roikoren/prefer-global/console": ["error", "always"],
    "node-roikoren/prefer-global/process": ["error", "always"],
    "node-roikoren/prefer-global/url-search-params": ["error", "always"],
    "node-roikoren/prefer-global/url": ["error", "always"],
    "node-roikoren/prefer-promises/dns": "error",
    "node-roikoren/prefer-promises/fs": "error"
  }
}

package.json (An example)

{
  "name": "your-module",
  "version": "1.0.0",
  "type": "commonjs",
  "engines": {
    "node": ">=8.10.0"
  }
}

📖 Rules

  • ⭐️ - the mark of recommended rules.
  • ✒️ - the mark of fixable rules.

Possible Errors

Rule IDDescription
node-roikoren/handle-callback-errrequire error handling in callbacks
node-roikoren/no-callback-literalenforce Node.js-style error-first callback pattern is followed
node-roikoren/no-exports-assigndisallow the assignment to exports⭐️
node-roikoren/no-extraneous-importdisallow import declarations which import extraneous modules⭐️
node-roikoren/no-extraneous-requiredisallow require() expressions which import extraneous modules⭐️
node-roikoren/no-missing-importdisallow import declarations which import non-existent modules⭐️
node-roikoren/no-missing-requiredisallow require() expressions which import non-existent modules⭐️
node-roikoren/no-new-requiredisallow new operators with calls to require
node-roikoren/no-path-concatdisallow string concatenation with __dirname and __filename
node-roikoren/no-process-exitdisallow the use of process.exit()
node-roikoren/no-unpublished-bindisallow bin files that npm ignores⭐️
node-roikoren/no-unpublished-importdisallow import declarations which import private modules⭐️
node-roikoren/no-unpublished-requiredisallow require() expressions which import private modules⭐️
node-roikoren/no-unsupported-features/es-builtinsdisallow unsupported ECMAScript built-ins on the specified version⭐️
node-roikoren/no-unsupported-features/es-syntaxdisallow unsupported ECMAScript syntax on the specified version⭐️
node-roikoren/no-unsupported-features/node-builtinsdisallow unsupported Node.js built-in APIs on the specified version⭐️
node-roikoren/process-exit-as-throwenforce process.exit() expressions to count as the same code path as throw⭐️
node-roikoren/shebangenforce correct usage of shebang⭐️✒️

Best Practices

Rule IDDescription
node-roikoren/no-deprecated-api/no-deprecated-apidisallow deprecated APIs⭐️

Stylistic Issues

Rule IDDescription
node-roikoren/callback-returnrequire return statements after callbacks
node-roikoren/exports-styleenforce either module.exports or exports✒️
node-roikoren/file-extension-in-importenforce the style of file extensions in import declarations✒️
node-roikoren/global-requirerequire require() calls to be placed at top-level module scope
node-roikoren/no-mixed-requiresdisallow require calls to be mixed with regular variable declarations
node-roikoren/no-process-envdisallow the use of process.env
node-roikoren/no-restricted-importdisallow specified modules when loaded by import declarations
node-roikoren/no-restricted-requiredisallow specified modules when loaded by require
node-roikoren/no-syncdisallow synchronous methods
node-roikoren/prefer-global/bufferenforce either Buffer or require("buffer").Buffer
node-roikoren/prefer-global/consoleenforce either console or require("console")
node-roikoren/prefer-global/processenforce either process or require("process")
node-roikoren/prefer-global/text-decoderenforce either TextDecoder or require("util").TextDecoder
node-roikoren/prefer-global/text-encoderenforce either TextEncoder or require("util").TextEncoder
node-roikoren/prefer-global/url-search-paramsenforce either URLSearchParams or require("url").URLSearchParams
node-roikoren/prefer-global/urlenforce either URL or require("url").URL
node-roikoren/prefer-promises/dnsenforce require("dns").promises
node-roikoren/prefer-promises/fsenforce require("fs").promises

🔧 Configs

This plugin provides three configs:

  • plugin:node-roikoren/recommended considers both CommonJS and ES Modules. If "type":"module" field existed in package.json then it considers files as ES Modules. Otherwise it considers files as CommonJS. In addition, it considers *.mjs files as ES Modules and *.cjs files as CommonJS.
  • plugin:node-roikoren/recommended-module considers all files as ES Modules.
  • plugin:node-roikoren/recommended-script considers all files as CommonJS.

Those preset config:

  • enable no-process-exit rule because the official document does not recommend a use of process.exit().
  • enable plugin rules which are given :star: in the above table.
  • add { ecmaVersion : 2019} etc. into parserOptions.
  • add proper globals into globals.
  • add this plugin into plugins.

👫 FAQ

🚥 Semantic Versioning Policy

eslint-plugin-node-roikoren follows semantic versioning and ESLint's Semantic Versioning Policy.

  • Patch release (intended to not break your lint build)
    • A bug fix in a rule that results in it reporting fewer errors.
    • Improvements to documentation.
    • Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.
    • Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).
  • Minor release (might break your lint build)
    • A bug fix in a rule that results in it reporting more errors.
    • A new rule is created.
    • A new option to an existing rule is created.
    • An existing rule is deprecated.
  • Major release (likely to break your lint build)
    • A support for old Node version is dropped.
    • A support for old ESLint version is dropped.
    • An existing rule is changed in it reporting more errors.
    • An existing rule is removed.
    • An existing option of a rule is removed.
    • An existing config is updated.

📰 Changelog

❤️ Contributing

Contributions are welcome!

Please use GitHub's Issues/PRs.

Development Tools

  • npm test runs tests and measures coverage.
  • npm run coverage shows the coverage result of npm test command.
  • npm run clean removes the coverage result of npm test command.