1.1.1 • Published 3 years ago

eslint-config-zhlyzv v1.1.1

Weekly downloads
2
License
MIT
Repository
github
Last release
3 years ago

My Eslint and Prettier Setup

What this does

  • Lints JavaScript based on latest standards
  • Lints and Fixes React
  • Fixes code formatting issues with Prettier

Installation

This config can be used both globally and locally per project.

Global installation is useful so linting can happen on smaller JS projects as well.

Local install

  1. Run npx install-peerdeps --dev eslint-config-zhlyzv to install dependencies
  2. Create an .eslintrc file in the root of the project directory
  3. Add the following:
    {
      "extends": ["zhlyzv"]
    }

Global install

  1. Run npx install-peerdeps -g eslint-config-zhlyzv to install dependencies
  2. Create a global .eslintrc file

    This should be located in:

    • ~/.eslintrc for Linux/Mac
    • %userprofile%\.eslintrc for Windows
  3. Add the following:

    {
      "extends": ["zhlyzv"]
    }

VS Code setup

Do this after completing the above setup.

  1. Install the ESlint package for VS Code
  2. Set the following under File -> Preferences -> Settings
"editor.formatOnSave": true,
"[javascript]": {
  "editor.formatOnSave": false
},
"[javascriptreact]": {
  "editor.formatOnSave": false
},
"eslint.autoFixOnSave": true,
"prettier.disableLanguages": ["javascript", "javascriptreact"],
1.1.1

3 years ago

1.1.0

3 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago