Skip to content

Commit a642e8c

Browse files
authored
Merge pull request #34 from piyook/chore/general-update
Chore(): general update
2 parents a388b59 + 0532390 commit a642e8c

36 files changed

+3097
-8839
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
node-version: '22'
1919
cache: 'npm'
2020
- run: npm ci
21-
- run: npm run lint
21+
- run: npm run lint -- --deny-warnings
2222

2323
prettier:
2424
runs-on: ubuntu-latest

.prettierrc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"singleQuote": true,
33
"tabWidth": 4,
4-
"useTabs": false,
4+
"useTabs": true,
55
"bracketSpacing": true
6-
}
6+
}

.xo-config.json

Lines changed: 0 additions & 14 deletions
This file was deleted.

cypress.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,5 @@ import { defineConfig } from 'cypress';
33
export default defineConfig({
44
e2e: {
55
baseUrl: 'http://localhost:8000',
6-
setupNodeEvents(on, config) {
7-
// implement node event listeners here
8-
},
96
},
107
});

cypress/e2e/demo-endpoints-spec.cy.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
import exp from 'constants';
2-
import { response } from 'express';
3-
41
const catsSchema = {
52
$schema: 'http://json-schema.org/draft-04/schema#',
63
type: 'array',

cypress/support/commands.ts

Lines changed: 0 additions & 37 deletions
This file was deleted.

cypress/support/e2e.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
// ***********************************************************
1515

1616
// Import commands.js using ES2015 syntax:
17-
import './commands';
17+
// import './commands';
1818

1919
import chaiJsonSchema from 'chai-json-schema';
2020
chai.use(chaiJsonSchema);

0 commit comments

Comments
 (0)