eslint-config-paraply
v1.0.4
Published
1. Run `npx install-peerdeps --dev eslint-config-jorgy` 2. Install ESLint plugin for VSCode 3. Add these options to your VSCode settings:
Downloads
7
Readme
Run
npx install-peerdeps --dev eslint-config-jorgy
Install ESLint plugin for VSCode
Add these options to your VSCode settings:
// This one is deprecated "eslint.autoFixOnSave": true, // Use this next one instead "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "[javascript]": { "editor.formatOnSave": false, }, "[javascriptreact]": { "editor.formatOnSave": false }, "[typescript]": { "editor.formatOnSave": false, }, "prettier.disableLanguages": ["js"],
Add
.eslintrc
to your project. ESLint has made it next to impossible to use shared configs/plugins globally, so sadly forced to using them locally. Put this in the file:{ "extends": ["jorgy"], "rules": { // Put your overrides here } }