UNPKG

281 BJavaScriptView Raw
1module.exports = {
2 overrides: [
3 {
4 files: [
5 "*.{test,spec}.{js,ts,jsx,tsx}",
6 "**/__tests__/**/*.{js,ts,jsx,tsx}",
7 ],
8 rules: {
9 "@typescript-eslint/unbound-method": "off",
10 "jest/unbound-method": "error",
11 },
12 },
13 ],
14};