corepack/.eslintrc.js

13 lines
265 B
JavaScript

module.exports = {
extends: [
`@yarnpkg`,
],
rules: {
// eslint-disable-next-line @typescript-eslint/naming-convention
'no-restricted-globals': [`error`, {
name: `fetch`,
message: `Use fetch from sources/httpUtils.ts`,
}],
},
};