Skip to content

Commit

Permalink
running prettier and linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Sadaf-A committed Nov 4, 2023
1 parent 9094c18 commit 937521c
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 40 deletions.
2 changes: 1 addition & 1 deletion JS/edgechains/examples/.prettierrc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"singleQuote": true,
"trailingComma": "all"
}
}
21 changes: 10 additions & 11 deletions JS/edgechains/examples/ormconfig.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"type": "postgres",
"host": "db.rmzqtepwnzoxgkkzjctt.supabase.co",
"port": 5432,
"username": "postgres",
"password": "xaX0MYcf1YiJlChK",
"database": "postgres",
"entities": ["dist/entities/**/*.js"],
"synchronize": false,
"logging": false
}

"type": "postgres",
"host": "db.rmzqtepwnzoxgkkzjctt.supabase.co",
"port": 5432,
"username": "postgres",
"password": "xaX0MYcf1YiJlChK",
"database": "postgres",
"entities": ["dist/entities/**/*.js"],
"synchronize": false,
"logging": false
}
56 changes: 28 additions & 28 deletions JS/edgechains/examples/typings/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
export type EmptyObject = Record<string, never>;

export interface AppConfig {
app: {
name: string;
version: string;
};
auth0: {
audience: string;
issuer: string;
clientId: string;
clientSecret: string;
};
db: {
host: string;
port: number;
username: string;
password: string;
database: string;
};
frontend: {
url: string;
};
server: {
address: string;
port: number;
};
}
export type EmptyObject = Record<string, never>;

export interface AppConfig {
app: {
name: string;
version: string;
};
auth0: {
audience: string;
issuer: string;
clientId: string;
clientSecret: string;
};
db: {
host: string;
port: number;
username: string;
password: string;
database: string;
};
frontend: {
url: string;
};
server: {
address: string;
port: number;
};
}

0 comments on commit 937521c

Please sign in to comment.