Skip to content

Commit 2774190

Browse files
committed
formatting fixes
1 parent ba57d2d commit 2774190

File tree

6 files changed

+9
-10
lines changed

6 files changed

+9
-10
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ We welcome all contributors to Ignite CLI! This contributing guide will help you
44

55
Before submitting a pull request, you will want to make sure that your branch meets the following requirements:
66

7-
_Working on Ignite CLI requires pnpm 10.9.0
7+
\_Working on Ignite CLI requires pnpm 10.9.0
88

99
- Everything works on iOS/Android
1010
- Jest tests pass in the root folder (`pnpm run test`)

boilerplate/app/navigators/navigationTypes.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,6 @@ export type DemoTabScreenProps<T extends keyof DemoTabParamList> = CompositeScre
3434
AppStackScreenProps<keyof AppStackParamList>
3535
>
3636

37-
export interface NavigationProps
38-
extends Partial<ComponentProps<typeof NavigationContainer<AppStackParamList>>> {}
37+
export interface NavigationProps extends Partial<
38+
ComponentProps<typeof NavigationContainer<AppStackParamList>>
39+
> {}

docs/cli/Troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ You can uninstall previous versions of the cli with:
2525
```bash
2626
npm uninstall --global ignite-cli
2727
# or
28-
pnpm remove ignite-cli -g
28+
pnpm remove ignite-cli -g
2929
```

docs/concept/Generators.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,24 +51,20 @@ This is a special kind of generator - "special" in that it modifies the native p
5151
The following files will be found in your templates folder (`ignite/templates/app-icon`) which can be customized:
5252

5353
- `android-adaptive-background.png`:
54-
5554
- The generator will use this file to create all required adaptive launcher-icon background layers for Android 8.0 and above.
5655
- Updates same directories as the legacy icon.
5756

5857
- `android-adaptive-foreground.png`:
59-
6058
- The generator will use this file to create all required adaptive launcher-icon foreground layers for Android 8.0 and above.
6159
- Updates same directories as the legacy icon.
6260

6361
- `android-legacy.png`:
64-
6562
- The generator will use this file to create all required legacy launcher-icons for Android 7.1 and below.
6663
- Automatically transforms the icon to add necessary padding and radius. Note, when creating your custom input file, do not include the padding or radius.
6764
- (vanilla) Updates `./android/app/src/main/res/` including the `mipmap-anydpi-v26/ic_launcher.xml`.
6865
- (expo) Updates `./assets/images/` including the root file `./app.json`.
6966

7067
- `ios-universal.png`:
71-
7268
- The generator will use this file to create all required app-icons for iOS.
7369
- (vanilla) Updates `./ios/**/Images.xcassets/AppIcon.appiconset/` including `Content.json`.
7470
- (expo) Updates `./assets/images/` including the root file `./app.json`.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,4 +102,4 @@
102102
]
103103
},
104104
"packageManager": "[email protected]"
105-
}
105+
}

src/commands/new.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,9 @@ module.exports = {
656656
// update the `packagerManager` field in `package.json
657657
await system.run(`yarn set version ${yarnVersion}`, { onProgress: log })
658658
} else {
659-
warning(`We do not recommend using yarn v1 due to security and performance reasons. We recommend using yarn v4 or pnpm.`)
659+
warning(
660+
`We do not recommend using yarn v1 due to security and performance reasons. We recommend using yarn v4 or pnpm.`,
661+
)
660662
}
661663
}
662664

0 commit comments

Comments
 (0)