[lint] Add `expo-module lint` with an ESLint templateAdded the command `expo-module lint` along with `expo-module eslint`. `lint` calls `eslint` with JSand TS file extensions, which `eslint` does n
[lint] Add `expo-module lint` with an ESLint templateAdded the command `expo-module lint` along with `expo-module eslint`. `lint` calls `eslint` with JSand TS file extensions, which `eslint` does not look for by default.The eslintrc template uses the `universe/native` configuration but it can be reconfigured to anything.Tested by linting `expo-module-scripts` itself and fixing a few Prettier suggestions.
show more ...
[ts][font] Convert expo-font to TSConverts the expo-font module to TypeScript. Removed the single `Font` named export and replaced it with individual function/property exports. Updated the `expo` p
[ts][font] Convert expo-font to TSConverts the expo-font module to TypeScript. Removed the single `Font` named export and replaced it with individual function/property exports. Updated the `expo` package's use of `Font` as well and verified that TSC still runs and that the Jest tests pass.Test plan: moved Font tests to expo-font (+ added to CI) and verified they pass.Closes #2847