Skip to content
This repository was archived by the owner on Jun 30, 2021. It is now read-only.

Improve intel ba1 to implement 1 #77

Merged
merged 6 commits into from
Jun 6, 2020
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
6 changes: 6 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"trailingComma": "es5",
"arrowParens": "always",
"tabWidth": 2,
"singleQuote": false,
}
2 changes: 0 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,4 @@
"webscrap"
],
"editor.tabSize": 2,
"prettier.tslintIntegration": true,
"prettier.arrowParens": "always"
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
},
"author": "schettn",
"dependencies": {
"snek-client": "^0.1.0",
"alasql": "^0.5.5",
"apollo-boost": "^0.4.7",
"graphql": "^14.6.0",
"lodash.clonedeep": "^4.5.0",
"moment": "^2.24.0",
"react-scripts": "^3.4.1",
"react-very-simple-oauth": "^1.1.1",
"snek-client": "file:../client"
"react-very-simple-oauth": "^1.1.1"
},
"devDependencies": {
"@types/lodash.clonedeep": "^4.5.6",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

//#region > Imports
//#PACKAGE "snek-client"
//## npm install "./client"
//## npm install "snek-client@0.1.0"
// Contains the clients for API calls to SNEK, Github and GitLab
import { SnekClient, GithubClient, WebClient } from "snek-client";

Expand Down
2 changes: 1 addition & 1 deletion src/utils/oauth/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import RSA from "react-very-simple-oauth";

//> GithubProvider
// Contains the github authentication provider
import GithubProvider from './GithubProvider';
import GithubProvider from "./GithubProvider";
//#endregion

//#region > Exports
Expand Down
2 changes: 1 addition & 1 deletion src/utils/talks/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//#region > Imports
//#PACKAGE "snek-client"
//## npm install "./client"
//## npm install "snek-client@0.1.0"
// Contains a client for web calls
import { WebClient } from "snek-client";

Expand Down
2 changes: 1 addition & 1 deletion src/utils/upload/anonfiles.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
//#region > Imports
//#PACKAGE "snek-client"
//## npm install "./client"
//## npm install "snek-client@0.1.0"
// Contains a client for web calls
import { WebClient } from "snek-client";
//#endregion
Expand Down