2.0.4-dev.2 • Published 2 years ago

@beezyinc/eslint-config-beezy v2.0.4-dev.2

Weekly downloads
1,992
License
-
Repository
github
Last release
2 years ago

eslint-config-beezy

This is a shareable Linter(eslint and stylelint) configuration that enforces Beezy's style guide.

ESLint is a tool for identifying and reporting on patterns found in JavaScript code, with the goal of making code more consistent and avoiding bugs. It's an invaluable tool when working with other engineers.

Usage

Install the conventions by running:

yarn add prettier eslint @beezyinc/eslint-config-beezy -E -D

Then add the extends to your .eslintrc:

{
  "extends": "@beezyinc/eslint-config-beezy",
  "rules": {
    // your overrides
  }
}

Then add the extends to your project that uses .sass syntax stylelint.config.js:

{
  "extends": "@beezyinc/eslint-config-beezy/stylelint.config.sass.js",
  "rules": {
    // your overrides
  }
}

Then add the extends to your project that uses .scss syntax stylelint.config.js:

{
  "extends": "@beezyinc/eslint-config-beezy/stylelint.config.scss.js",
  "rules": {
    // your overrides
  }
}

Also extend the prettier config to your package.json:

{
     "prettier": "@beezyinc/eslint-config-beezy/.prettierrc.js",
}

Settings

If you'd like to overwrite eslint or prettier settings, you can add the rules in your .eslintrc file. The ESLint rules go directly under "rules" while Prettier options go to .prettierc file. Note that all styling rules are disabled in eslint so that prettier can take control of this (trailing comma, and single quote), so be careful not to activate them because they may conflict with Prettier.

With VS Code

You probably want your editor to lint and fix it for you. Here are the instructions for VS Code:

  1. Install the ESLint package
  2. Now we need to setup some VS Code settings via Code/FilePreferencesSettings. It's easier to enter these settings while editing the settings.json file, so click the {} icon in the top right corner:
// These are all our auto-save configs
"editor.formatOnSave": true,
// turn it off for JS and JSX, we will do this via eslint
"[javascript]": {
  "editor.formatOnSave": false
},
"[javascriptreact]": {
  "editor.formatOnSave": false
},
// tell the ESLint plugin to run on save
"eslint.autoFixOnSave": true,
// Optional BUT IMPORTANT: If you have the prettier extension enabled for other languages like CSS and HTML, turn it off for JS since we are doing it through Eslint already
"prettier.disableLanguages": ["javascript", "javascriptreact"],
2.0.3

2 years ago

2.0.4-dev.1

2 years ago

2.0.4-dev.2

2 years ago

1.35.0

3 years ago

2.0.2

3 years ago

2.0.1

3 years ago

2.0.0

3 years ago

2.0.3-dev.1

3 years ago

1.34.0

3 years ago

1.33.0

3 years ago

1.32.0

3 years ago

1.31.0

3 years ago

1.30.0

3 years ago

1.29.0

3 years ago

1.19.0

3 years ago

1.18.0

3 years ago

1.21.0

3 years ago

1.22.0

3 years ago

1.20.0

3 years ago

1.23.0

3 years ago

1.17.0

3 years ago

1.16.0

3 years ago

1.15.0

4 years ago

1.14.0

4 years ago

1.13.0

4 years ago

1.12.0

4 years ago

1.11.0

4 years ago

1.10.0

4 years ago

1.9.0

4 years ago

1.8.0

4 years ago

1.7.0

4 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

5 years ago

1.2.2

5 years ago

1.2.1

5 years ago

1.2.0

5 years ago

1.1.0

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago