JSPM

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

"ESlint & Prettier Config by heyitsbash"

Package Exports

  • eslint-config-heyitsbash

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

Readme

Local Install

  1. In your project folder type npm init , and
  2. npx install-peerdeps --dev eslint-config-heyitsbash
  3. create .eslintrc.js file in the root of your projects folder
  4. copy this in .eslintrc.js
module.exports = {
  extends: [
    'heyitsbash',
  ]
};
  1. add these scripts in package.json
"scripts": {
  "lint": "eslint .",
  "lint:fix": "eslint . --fix"
},
  1. lint/pretty your code by running npm run lint and npm run lint:fix in the console