1
mirror of https://github.com/jakejarvis/eslint-config.git synced 2025-04-26 06:25:23 -04:00

fix operator-linebreak again

This commit is contained in:
Jake Jarvis 2025-01-16 10:47:06 -05:00
parent b5c20f22a2
commit 5ed0ff58f6
Signed by: jake
SSH Key Fingerprint: SHA256:nCkvAjYA6XaSPUqc4TfbBQTpzr8Xj7ritg/sGInCdkc
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ export default [{
const: "never",
}],
"operator-linebreak": ["error", "before"],
"operator-linebreak": ["error", "after", { "overrides": { "?": "before", ":": "before" } }],
"padded-blocks": ["error", "never"],
"quote-props": ["error", "as-needed"],

View File

@ -1,6 +1,6 @@
{
"name": "@jakejarvis/eslint-config",
"version": "4.0.5",
"version": "4.0.6",
"description": "My ESLint config. Inspired heavily by eslint-config-google and moderately by eslint-config-airbnb.",
"license": "MIT",
"repository": "jakejarvis/eslint-config",