Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
node-version: '22'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run lint -- --deny-warnings

prettier:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"singleQuote": true,
"tabWidth": 4,
"useTabs": false,
"useTabs": true,
"bracketSpacing": true
}
}
14 changes: 0 additions & 14 deletions .xo-config.json

This file was deleted.

3 changes: 0 additions & 3 deletions cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,5 @@ import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
baseUrl: 'http://localhost:8000',
setupNodeEvents(on, config) {
// implement node event listeners here
},
},
});
3 changes: 0 additions & 3 deletions cypress/e2e/demo-endpoints-spec.cy.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import exp from 'constants';
import { response } from 'express';

const catsSchema = {
$schema: 'http://json-schema.org/draft-04/schema#',
type: 'array',
Expand Down
37 changes: 0 additions & 37 deletions cypress/support/commands.ts

This file was deleted.

2 changes: 1 addition & 1 deletion cypress/support/e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// ***********************************************************

// Import commands.js using ES2015 syntax:
import './commands';
// import './commands';

import chaiJsonSchema from 'chai-json-schema';
chai.use(chaiJsonSchema);
Expand Down
Loading