mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-22 22:03:30 +08:00
25 lines
457 B
JavaScript
25 lines
457 B
JavaScript
|
/** @type {import("eslint").Linter.Config} */
|
||
|
module.exports = {
|
||
|
root: true,
|
||
|
extends: ["@monkeytype/eslint-config"],
|
||
|
globals: {
|
||
|
$: "readonly",
|
||
|
jQuery: "readonly",
|
||
|
html2canvas: "readonly",
|
||
|
ClipboardItem: "readonly",
|
||
|
grecaptcha: "readonly",
|
||
|
},
|
||
|
env: {
|
||
|
browser: true,
|
||
|
es2021: true,
|
||
|
node: true,
|
||
|
},
|
||
|
ignorePatterns: [
|
||
|
"node_modules/",
|
||
|
"dist/",
|
||
|
"static/js/",
|
||
|
"__tests__/",
|
||
|
"jest.config.ts",
|
||
|
],
|
||
|
};
|