Package Exports
- eslint-config-jaid
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-jaid) 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
This is just my personal ESLint config. You most certainly will not think it's pretty, and that's okay! I still recommend you to take a look into the src
folder, because my ESLint configs are generated with a pretty cool build setup!
FAQ
You can import ready-to-use ESLint configs in a JavaScript project?
Yes, it's great! If you need one, you should take a look at Airbnb's one. It seems to be quite popular. 80000 stars are a lot, aren't they?
But I want to use yours!
Well, fine.
Execute this:
npm install --save-dev eslint
npx install-peerdeps --dev eslint-config-jaid
And add this to your package.json
:
{
"eslintConfig": {
"extends": "jaid"
}
}