1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-11-08 19:11:31 +01:00

feat: add arrow-body-style: "always"

Ref: https://eslint.org/docs/latest/rules/arrow-body-style

BREAKING CHANGE: New rule introduced
This commit is contained in:
Divlo 2022-08-31 13:27:37 +02:00
parent b743c94430
commit 3f1d1921ba
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9

View File

@ -147,6 +147,7 @@
"yoda": ["error", "never"], "yoda": ["error", "never"],
"curly": ["error", "all"], "curly": ["error", "all"],
"arrow-parens": ["error", "always"], "arrow-parens": ["error", "always"],
"arrow-body-style": ["error", "always"],
"import/no-absolute-path": "error", "import/no-absolute-path": "error",
"import/no-webpack-loader-syntax": "error", "import/no-webpack-loader-syntax": "error",