MOB-1039 apply member delimiter style and autofix (#3281)

This commit is contained in:
Ryan Stelly
2025-12-12 14:04:58 -06:00
committed by GitHub
parent 741f053716
commit 4c49e69851
98 changed files with 485 additions and 483 deletions

View File

@@ -148,7 +148,8 @@ module.exports = {
"@typescript-eslint/consistent-type-imports": ["error", {
fixStyle: "separate-type-imports"
}],
"import/consistent-type-specifier-style": ["error", "prefer-top-level"]
"import/consistent-type-specifier-style": ["error", "prefer-top-level"],
"@stylistic/member-delimiter-style": "error"
},
ignorePatterns: ["!.detoxrc.js", "/coverage/*", "/vendor/*", "**/flow-typed"],
settings: {
@@ -168,7 +169,8 @@ module.exports = {
"@typescript-eslint/no-wrapper-object-types": "off",
"@typescript-eslint/no-require-imports": "off",
"@typescript-eslint/consistent-type-imports": "off",
"import/consistent-type-specifier-style": "off"
"import/consistent-type-specifier-style": "off",
"@stylistic/member-delimiter-style": "off"
}
},
{