-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: setup repo wide prettier format (#322)
Co-authored-by: salihuDickson <salihudickson@gmail.com> Co-authored-by: Anurag Gupta <me@anuragxd.com>
- Loading branch information
1 parent
bbe64c6
commit ae87802
Showing
33 changed files
with
367 additions
and
327 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
"parserOptions": { | ||
"project": ["./tsconfig.json"] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"rootDir": "./src", | ||
"componentPath": "./components", | ||
"componentPrefix": "fast" | ||
} | ||
"rootDir": "./src", | ||
"componentPath": "./components", | ||
"componentPrefix": "fast" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
{ | ||
"extends": ["@open-wc", "@elixir-cloud", "prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"class-methods-use-this": "warn", | ||
"lit/no-classfield-shadowing": "warn", | ||
"no-console": ["error", { "allow": ["warn", "error"] }] | ||
} | ||
"extends": ["@open-wc", "@elixir-cloud", "prettier"], | ||
"plugins": ["prettier"], | ||
"rules": { | ||
"prettier/prettier": "error", | ||
"class-methods-use-this": "warn", | ||
"lit/no-classfield-shadowing": "warn", | ||
"no-console": ["error", { "allow": ["warn", "error"] }] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-GB"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #fafafa; | ||
} | ||
</style> | ||
</head> | ||
<title>ecc-client-ga4gh-wes-runs</title> | ||
<body> | ||
<div id="demo"></div> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #fafafa; | ||
} | ||
</style> | ||
</head> | ||
<title>ecc-client-ga4gh-wes-runs</title> | ||
<body> | ||
<div id="demo"></div> | ||
|
||
<script type="module"> | ||
import { html, render } from "lit"; | ||
import "../../dist/components/create-run/index.js"; | ||
<script type="module"> | ||
import { html, render } from "lit"; | ||
import "../../dist/components/create-run/index.js"; | ||
|
||
render( | ||
html`<ecc-client-ga4gh-tes-create-run | ||
baseURL="http://localhost:8080/ga4gh/tes/v1" | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
render( | ||
html`<ecc-client-ga4gh-tes-create-run | ||
baseURL="http://localhost:8080/ga4gh/tes/v1" | ||
/>`, | ||
document.querySelector("#demo") | ||
); | ||
</script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-GB"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #f5f5f5; | ||
} | ||
</style> | ||
<title>ecc-client-ga4gh-tes</title> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
</head> | ||
<body> | ||
<div class="p-10"> | ||
<a href="./runs" class="text-blue-500">Runs component</a> | ||
<br /> | ||
<a href="./create-run" class="text-blue-500">Create runs component</a> | ||
</div> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<style> | ||
body { | ||
background: #f5f5f5; | ||
} | ||
</style> | ||
<title>ecc-client-ga4gh-tes</title> | ||
<script src="https://cdn.tailwindcss.com"></script> | ||
</head> | ||
<body> | ||
<div class="p-10"> | ||
<a href="./runs" class="text-blue-500">Runs component</a> | ||
<br /> | ||
<a href="./create-run" class="text-blue-500">Create runs component</a> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.