-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add 'format' npm script; run Prettier on all files
- Loading branch information
Showing
12 changed files
with
49 additions
and
81 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 |
---|---|---|
|
@@ -4,6 +4,7 @@ node_modules | |
.env | ||
.env.* | ||
!.env.example | ||
/.aider* | ||
|
||
# Ignore files for PNPM, NPM and YARN | ||
pnpm-lock.yaml | ||
|
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,26 +1,30 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Truthy | Truth tables made easy | Caleb Evans</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta name="description" content="Generate truth tables effortlessly for any number of boolean expressions" /> | ||
<meta http-equiv="Content-Security-Policy" | ||
content="default-src 'none'; style-src 'self' data: https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https://fonts.gstatic.com; script-src 'self' https://gc.zgo.at; img-src 'self' data:; connect-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com https://calebevans-projects.goatcounter.com/count; manifest-src 'self'"> | ||
<link rel="shortcut icon" href="icons/favicon.png" /> | ||
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png" sizes="180x180" /> | ||
<script | ||
data-goatcounter="https://calebevans-projects.goatcounter.com/count" | ||
async | ||
src="https://gc.zgo.at/count.v4.js" | ||
crossorigin="anonymous" | ||
integrity="sha384-nRw6qfbWyJha9LhsOtSb2YJDyZdKvvCFh0fJYlkquSFjUxp9FVNugbfy8q1jdxI+" | ||
></script> | ||
</head> | ||
<body> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>Truthy | Truth tables made easy | Caleb Evans</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<meta | ||
name="description" | ||
content="Generate truth tables effortlessly for any number of boolean expressions" | ||
/> | ||
<meta | ||
http-equiv="Content-Security-Policy" | ||
content="default-src 'none'; style-src 'self' data: https://fonts.googleapis.com 'unsafe-inline'; font-src 'self' data: https://fonts.gstatic.com; script-src 'self' https://gc.zgo.at; img-src 'self' data:; connect-src 'self' https://fonts.googleapis.com https://fonts.gstatic.com https://calebevans-projects.goatcounter.com/count; manifest-src 'self'" | ||
/> | ||
<link rel="shortcut icon" href="icons/favicon.png" /> | ||
<link rel="apple-touch-icon" href="icons/apple-touch-icon.png" sizes="180x180" /> | ||
<script | ||
data-goatcounter="https://calebevans-projects.goatcounter.com/count" | ||
async | ||
src="https://gc.zgo.at/count.v4.js" | ||
crossorigin="anonymous" | ||
integrity="sha384-nRw6qfbWyJha9LhsOtSb2YJDyZdKvvCFh0fJYlkquSFjUxp9FVNugbfy8q1jdxI+" | ||
></script> | ||
</head> | ||
<body> | ||
<main></main> | ||
|
||
<main></main> | ||
|
||
<script type="module" src="scripts/index.js"></script> | ||
</body> | ||
<script type="module" src="scripts/index.js"></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
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
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.