Bump @typescript-eslint/experimental-utils from 5.10.1 to 5.10.2 in /desktop (#3411)
Summary: Bumps [typescript-eslint/experimental-utils](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/experimental-utils) from 5.10.1 to 5.10.2. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/releases"><code>@typescript-eslint/experimental-utils</code>'s releases</a>.</em></p> <blockquote> <h2>v5.10.2</h2> <h2><a href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.10.1...v5.10.2">5.10.2</a> (2022-01-31)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>eslint-plugin:</strong> [no-restricted-imports] allow relative type imports with patterns configured (<a href="https://github-redirect.dependabot.com/typescript-eslint/typescript-eslint/issues/4494">#4494</a>) (<a href="4a6d217ae8">4a6d217</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/experimental-utils/CHANGELOG.md"><code>@typescript-eslint/experimental-utils</code>'s changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/typescript-eslint/typescript-eslint/compare/v5.10.1...v5.10.2">5.10.2</a> (2022-01-31)</h2> <p><strong>Note:</strong> Version bump only for package <code>@typescript-eslint/experimental-utils</code></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="1d88ac1d57"><code>1d88ac1</code></a> chore: publish v5.10.2</li> <li>See full diff in <a href="https://github.com/typescript-eslint/typescript-eslint/commits/v5.10.2/packages/experimental-utils">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `dependabot rebase` will rebase this PR - `dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `dependabot merge` will merge this PR after your CI passes on it - `dependabot squash and merge` will squash and merge this PR after your CI passes on it - `dependabot cancel merge` will cancel a previously requested merge and block automerging - `dependabot reopen` will reopen this PR if it is closed - `dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Pull Request resolved: https://github.com/facebook/flipper/pull/3411 Reviewed By: passy Differential Revision: D34050514 Pulled By: mweststrate fbshipit-source-id: 272d07121cbfe0720b23844f50942c5b04fb5809
This commit is contained in:
committed by
Facebook GitHub Bot
parent
c793549d84
commit
7481c1fece
@@ -10,7 +10,7 @@
|
||||
"license": "MIT",
|
||||
"bugs": "https://github.com/facebook/flipper/issues",
|
||||
"dependencies": {
|
||||
"@typescript-eslint/experimental-utils": "^5.10.1",
|
||||
"@typescript-eslint/experimental-utils": "^5.10.2",
|
||||
"@typescript-eslint/parser": "^5.10.2",
|
||||
"fs-extra": "^10.0.0"
|
||||
},
|
||||
|
||||
@@ -60,4 +60,4 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
@@ -49,4 +49,4 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
@@ -47,7 +47,7 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
function isLetter(x: string | undefined): boolean {
|
||||
return typeof x === 'string' && /^[a-z]$/i.test(x);
|
||||
|
||||
@@ -45,4 +45,4 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
@@ -106,4 +106,4 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
@@ -45,4 +45,4 @@ export default createESLintRule<Options, MessageIds>({
|
||||
},
|
||||
};
|
||||
},
|
||||
});
|
||||
}) as any /* unnameable return type */;
|
||||
|
||||
@@ -9,4 +9,6 @@
|
||||
|
||||
import {ESLintUtils} from '@typescript-eslint/experimental-utils';
|
||||
|
||||
export const createESLintRule = ESLintUtils.RuleCreator(() => ``);
|
||||
export type RuleCreator = ReturnType<typeof ESLintUtils.RuleCreator>;
|
||||
|
||||
export const createESLintRule: RuleCreator = ESLintUtils.RuleCreator(() => ``);
|
||||
|
||||
Reference in New Issue
Block a user