mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-11-08 05:03:39 +08:00
16 lines
296 B
JavaScript
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",
|
|
},
|
|
};
|