monkeytype/backend/.eslintrc.cjs
2024-07-17 15:30:48 +02:00

16 lines
296 B
JavaScript

/** @type {import("eslint").Linter.Config} */
module.exports = {
root: true,
extends: ["@monkeytype/eslint-config"],
ignorePatterns: [
"node_modules/",
"dist/",
"build/",
"__tests__/",
"jest.config.ts",
"__migration__/",
],
rules: {
eqeqeq: "error",
},
};