1.0.4 • Published 4 years ago

eslint-config-paraply v1.0.4

Weekly downloads
4
License
MIT
Repository
-
Last release
4 years ago
  1. Run npx install-peerdeps --dev eslint-config-jorgy
  2. Install ESLint plugin for VSCode
  3. 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"],
  4. 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
      }
    }
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago