JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 6
  • Score
    100M100P100Q48228F
  • License MIT

An awesome ESLint configuration for writing solid, quality code in Node.js and the browser.

Package Exports

  • eslint-config-recombix

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (eslint-config-recombix) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

eslint-config-recombix

An awesome ESLint configuration for writing solid, quality code in Node.js and the browser.

Why This Module Exists

This module exists to help developers to write code that is understandable and easy to maintain. The linting rules are deliberately opinionated to encourage developers to write code that is easy to read, easy to reason about, and easy to understand for newcomers.

Latest Standards

The module will be kept up-to-date with the latest ECMAScript standards in line with the functionality that Node.js supports. If you wish to use this config whilst developing for legacy browsers it's recommended you use a transpiler such as Babel to convert your code from ES2015+ to ES5.

Basic Usage

Add the following development dependencies into your project's package.json:

"devDependencies": {
    "babel-eslint": "latest",
    "eslint": "latest",
    "eslint-config-recombix": "latest",
    "eslint-config-vue": "latest",
    "eslint-plugin-disable": "latest",
    "eslint-plugin-filenames": "latest",
    "eslint-plugin-html": "latest",
    "eslint-plugin-json": "latest",
    "eslint-plugin-node": "latest",
    "eslint-plugin-promise": "latest",
    "eslint-plugin-vue": "latest"
},

You should also set the Node version you plan to use for your project, for example:

"engines": {
    "node" : ">=7.5 < 8.0"  // <-- Example!
}