JSPM

neutrino-preset-standard

5.8.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 1
  • Score
    100M100P100Q34619F
  • License MPL-2.0

Neutrino preset for adding Standard's base JS ESLint config, following the JavaScript Standard Style

Package Exports

  • neutrino-preset-standard

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 (neutrino-preset-standard) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Neutrino Standard JS Preset

neutrino-preset-standard is a Neutrino preset that supports linting JavaScript projects with Standard's base ESLint config, following the JavaScript Standard Style.

Documentation

This is a clone of the Neutrino Airbnb Preset. Their documentation should still apply.

Install this package as a dev dependency.

yarn add --dev neutrino-preset-standard

In your package.json you should add this package to your presets.

{
  "config": {
    "presets": [
      "neutrino-preset-standard"
    ]
  },
  "scripts": {
    "start": "neutrino start",
    "build": "neutrino build"
  }
}