Skip to content

Commit 2c053b3

Browse files
committed
Add eslintignore
1 parent 8566bc4 commit 2c053b3

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

biome.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,9 @@
4343
".angular/**",
4444
"angular.json",
4545
"ember/instance-initializers/**",
46-
"ember/types.d.ts"
46+
"ember/types.d.ts",
47+
".output",
48+
".vinxi"
4749
]
4850
},
4951
"files": {

dev-packages/e2e-tests/test-applications/solidstart/README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ npm init solid@latest my-app
1414

1515
## Developing
1616

17-
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
17+
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a
18+
development server:
1819

1920
```bash
2021
npm run dev
@@ -27,11 +28,13 @@ npm run dev -- --open
2728

2829
Solid apps are built with _presets_, which optimise your project for deployment to different environments.
2930

30-
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add it to the `devDependencies` in `package.json` and specify in your `app.config.js`.
31+
By default, `npm run build` will generate a Node app that you can run with `npm start`. To use a different preset, add
32+
it to the `devDependencies` in `package.json` and specify in your `app.config.js`.
3133

3234
## Testing
3335

34-
Tests are written with `vitest`, `@solidjs/testing-library` and `@testing-library/jest-dom` to extend expect with some helpful custom matchers.
36+
Tests are written with `vitest`, `@solidjs/testing-library` and `@testing-library/jest-dom` to extend expect with some
37+
helpful custom matchers.
3538

3639
To run them, simply start:
3740

0 commit comments

Comments
 (0)