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
- In your project folder type
npm init, and npx install-peerdeps --dev eslint-config-heyitsbash- create
.eslintrc.jsfile in the root of your projects folder - copy this in
.eslintrc.js
module.exports = {
extends: [
'heyitsbash',
]
};- add these scripts in
package.json
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},- lint/pretty your code by running
npm run lintandnpm run lint:fixin the console