Showing 2,833 changed files with 172,832 additions and 139,938 deletions.
1 change: 1 addition & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ commands:
command: |
if [ ! -d node_modules ]; then
npm install
npm install oracledb
fi
- run:
# This is pretty terrible but OracleDB requires you to grab the binaries OOB
Expand Down
54 changes: 0 additions & 54 deletions .eslintrc.js

This file was deleted.

38 changes: 19 additions & 19 deletions .github/ISSUE_TEMPLATE/bug-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,25 +83,25 @@ assignees: ''

<!-- Put "yes" instead of "no" to your issue's relevant databases -->

| DB Type | Reproducible |
| --- | --- |
| `aurora-data-api` | no |
| `aurora-data-api-pg` | no |
| `better-sqlite3` | no |
| `cockroachdb` | no |
| `cordova` | no |
| `expo` | no |
| `mongodb` | no |
| `mysql` | no |
| `nativescript` | no |
| `oracle` | no |
| `postgres` | no |
| `react-native` | no |
| `sap` | no |
| `sqlite` | no |
| `sqlite-abstract` | no |
| `sqljs` | no |
| `sqlserver` | no |
| DB Type | Reproducible |
|-------------------| --- |
| `aurora-mysql` | no |
| `aurora-postgres` | no |
| `better-sqlite3` | no |
| `cockroachdb` | no |
| `cordova` | no |
| `expo` | no |
| `mongodb` | no |
| `mysql` | no |
| `nativescript` | no |
| `oracle` | no |
| `postgres` | no |
| `react-native` | no |
| `sap` | no |
| `sqlite` | no |
| `sqlite-abstract` | no |
| `sqljs` | no |
| `sqlserver` | no |


### Are you willing to resolve this issue by submitting a Pull Request?
Expand Down
38 changes: 19 additions & 19 deletions .github/ISSUE_TEMPLATE/feature-request.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,25 +61,25 @@ assignees: ''

<!-- Put "yes" instead of "no" to your issue's relevant databases -->

| DB Type | Relevant |
| --- | --- |
| `aurora-data-api` | no |
| `aurora-data-api-pg` | no |
| `better-sqlite3` | no |
| `cockroachdb` | no |
| `cordova` | no |
| `expo` | no |
| `mongodb` | no |
| `mysql` | no |
| `nativescript` | no |
| `oracle` | no |
| `postgres` | no |
| `react-native` | no |
| `sap` | no |
| `sqlite` | no |
| `sqlite-abstract` | no |
| `sqljs` | no |
| `sqlserver` | no |
| DB Type | Relevant |
|-------------------| --- |
| `aurora-mysql` | no |
| `aurora-postgres` | no |
| `better-sqlite3` | no |
| `cockroachdb` | no |
| `cordova` | no |
| `expo` | no |
| `mongodb` | no |
| `mysql` | no |
| `nativescript` | no |
| `oracle` | no |
| `postgres` | no |
| `react-native` | no |
| `sap` | no |
| `sqlite` | no |
| `sqlite-abstract` | no |
| `sqljs` | no |
| `sqlserver` | no |


### Are you willing to resolve this issue by submitting a Pull Request?
Expand Down
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
-->

- [ ] Code is up-to-date with the `master` branch
- [ ] `npm run lint` passes with this change
- [ ] `npm run format` to apply prettier formatting
- [ ] `npm run test` passes with this change
- [ ] This pull request links relevant issues as `Fixes #0000`
- [ ] There are new or updated unit tests validating the change
Expand Down
5 changes: 5 additions & 0 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
semi: false,
trailingComma: "all",
arrowParens: "always",
}
Loading