Skip to content

Commit

Permalink
Add eslintignore
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiborza committed Jul 11, 2024
1 parent 8566bc4 commit 2c053b3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
4 changes: 3 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@
".angular/**",
"angular.json",
"ember/instance-initializers/**",
"ember/types.d.ts"
"ember/types.d.ts",
".output",
".vinxi"
]
},
"files": {
Expand Down
9 changes: 6 additions & 3 deletions dev-packages/e2e-tests/test-applications/solidstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ npm init solid@latest my-app

## Developing

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

```bash
npm run dev
Expand All @@ -27,11 +28,13 @@ npm run dev -- --open

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

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`.
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`.

## Testing

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

To run them, simply start:

Expand Down

0 comments on commit 2c053b3

Please sign in to comment.