diff --git a/federation/.eslintrc.js b/federation/.eslintrc.js index 2fc4a637a..042a417f7 100644 --- a/federation/.eslintrc.js +++ b/federation/.eslintrc.js @@ -199,7 +199,7 @@ module.exports = { 'jest/prefer-to-have-length': 'error', 'jest/valid-expect': 'error', '@typescript-eslint/unbound-method': 'off', - 'jest/unbound-method': 'error', + // 'jest/unbound-method': 'error', }, }, ], diff --git a/federation/.prettierrc.js b/federation/.prettierrc.js new file mode 100644 index 000000000..bc1d767d7 --- /dev/null +++ b/federation/.prettierrc.js @@ -0,0 +1,9 @@ +module.exports = { + semi: false, + printWidth: 100, + singleQuote: true, + trailingComma: "all", + tabWidth: 2, + bracketSpacing: true, + endOfLine: "auto", +};