Skip to content

Commit 11ff150

Browse files
docs: Swap eslint+prettier with eslint (#163)
1 parent e54d69f commit 11ff150

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

cli/create-start-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pnpx create-start-app@latest my-app --tailwind --package-manager pnpm
3737
Available options:
3838

3939
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
40-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint+prettier`)
40+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
4141
- `--no-git`: Do not initialize a git repository
4242
- `--add-ons`: Enable add-on selection or specify add-ons to install
4343

@@ -63,7 +63,7 @@ Choose your preferred solution for formatting and linting either through the int
6363

6464
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
6565

66-
Setting this flag to `eslint+prettier` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
66+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
6767

6868
## Add-ons (experimental)
6969

cli/create-tanstack-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Available options:
4646
- `--template <type>`: Choose between `file-router`, `typescript`, or `javascript`
4747
- `--tailwind`: Enable Tailwind CSS
4848
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
49-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint+prettier`)
49+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
5050
- `--no-git`: Do not initialize a git repository
5151
- `--add-ons`: Enable add-on selection or specify add-ons to install
5252

@@ -102,7 +102,7 @@ Choose your preferred solution for formatting and linting either through the int
102102

103103
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
104104

105-
Setting this flag to `eslint+prettier` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
105+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
106106

107107
## Add-ons (experimental)
108108

cli/create-tanstack/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Available options:
4646
- `--template <type>`: Choose between `file-router`, `typescript`, or `javascript`
4747
- `--tailwind`: Enable Tailwind CSS
4848
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
49-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint+prettier`)
49+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
5050
- `--no-git`: Do not initialize a git repository
5151
- `--add-ons`: Enable add-on selection or specify add-ons to install
5252

@@ -102,7 +102,7 @@ Choose your preferred solution for formatting and linting either through the int
102102

103103
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
104104

105-
Setting this flag to `eslint+prettier` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
105+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
106106

107107
## Add-ons (experimental)
108108

cli/create-tsrouter-app/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ Available options:
4646
- `--template <type>`: Choose between `file-router`, `typescript`, or `javascript`
4747
- `--tailwind`: Enable Tailwind CSS
4848
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
49-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint+prettier`)
49+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
5050
- `--no-git`: Do not initialize a git repository
5151
- `--add-ons`: Enable add-on selection or specify add-ons to install
5252

@@ -102,7 +102,7 @@ Choose your preferred solution for formatting and linting either through the int
102102

103103
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
104104

105-
Setting this flag to `eslint+prettier` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
105+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
106106

107107
## Add-ons (experimental)
108108

cli/ts-create-start/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ pnpm create @tanstack/start@latest my-app --tailwind --package-manager pnpm
3737
Available options:
3838

3939
- `--package-manager`: Specify your preferred package manager (`npm`, `yarn`, `pnpm`, `bun`, or `deno`)
40-
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint+prettier`)
40+
- `--toolchain`: Specify your toolchain solution for formatting/linting (`biome`, `eslint`)
4141
- `--no-git`: Do not initialize a git repository
4242
- `--add-ons`: Enable add-on selection or specify add-ons to install
4343

@@ -63,7 +63,7 @@ Choose your preferred solution for formatting and linting either through the int
6363

6464
Setting this flag to `biome` will configure it as your toolchain of choice, adding a `biome.json` to the root of the project. Consult the [biome documentation](https://biomejs.dev/guides/getting-started/) for further customization.
6565

66-
Setting this flag to `eslint+prettier` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
66+
Setting this flag to `eslint` will configure it as your toolchain of choice, adding an `eslint.config.js` and `prettier.config.js` to the root of the project, as well as a `.prettierignore` file. Consult the [eslint documentation](https://eslint.org/docs/latest/) and [prettier documentation](https://prettier.io/docs/) for further customization.
6767

6868
## Add-ons (experimental)
6969

0 commit comments

Comments
 (0)