0.2.0 • Published 1 year ago

@guillaumecatel/eslint-config-jest v0.2.0

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

@soyhuguillaumecatelce/eslint-config-jest

ESLint shareable config for Jest test code style.

Installation

pnpm add -D @guillaumecatel/eslint-config-jest

# with standard config and ESLint
pnpm add -D eslint @guillaumecatel/eslint-config @guillaumecatel/eslint-config-jest

Usage

In order to use this config, choose the one you want and add this configuration to your package.json:

{
 "eslintConfig": {
   "extends": [
     "@guillaumecatel/eslint-config",
+    "@guillaumecatel/eslint-config-jest"
   ]
 }
}

Or add a .eslintrc.js file to your project root containing:

module.exports = {
  extends: [
    '@guillaumecatel/eslint-config',
+   '@guillaumecatel/eslint-config-jest'
  ]
}

VSCode integration

We recommend turning on VSCode settings to automatically run eslint --fix on save.

"editor.codeActionsOnSave": {
+  "source.fixAll.eslint": true
}

This will automatically format your code once you save. You don't need VSCode prettier extension enabled or running on save as eslint will automatically run prettier for you.

License

MIT

0.2.0

1 year ago

0.1.1

1 year ago

0.1.0

2 years ago

6.1.0

2 years ago

6.0.0

2 years ago

5.0.0

2 years ago

4.0.0

2 years ago