-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Runs prettier against entire codebase
- Loading branch information
Showing
76 changed files
with
1,170 additions
and
2,553 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,30 @@ | ||
{ | ||
"env": { | ||
"es6": false, | ||
"mocha": true, | ||
"node": true | ||
}, | ||
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"root": true, | ||
"globals": { | ||
"expect": true, | ||
"shallow": true, | ||
"render": true, | ||
"mount": true, | ||
"beforeAll": true, | ||
"cy": true | ||
}, | ||
"rules": { | ||
"eqeqeq": ["error"], | ||
"no-var": ["warn"], | ||
"no-duplicate-imports": ["error"], | ||
"prefer-const": ["error"], | ||
"prefer-spread": ["error"], | ||
"no-console": ["off"], | ||
"quotes": ["error", "single"], | ||
"react/react-in-jsx-scope": "off", | ||
"@typescript-eslint/no-explicit-any": "off" | ||
"env": { | ||
"es6": false, | ||
"mocha": true, | ||
"node": true | ||
}, | ||
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"], | ||
"parser": "@typescript-eslint/parser", | ||
"plugins": ["@typescript-eslint"], | ||
"root": true, | ||
"globals": { | ||
"expect": true, | ||
"shallow": true, | ||
"render": true, | ||
"mount": true, | ||
"beforeAll": true, | ||
"cy": true | ||
}, | ||
"rules": { | ||
"eqeqeq": ["error"], | ||
"no-var": ["warn"], | ||
"no-duplicate-imports": ["error"], | ||
"prefer-const": ["error"], | ||
"prefer-spread": ["error"], | ||
"no-console": ["off"], | ||
"quotes": ["error", "single"], | ||
"react/react-in-jsx-scope": "off", | ||
"@typescript-eslint/no-explicit-any": "off" | ||
} | ||
} |
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,13 +1,13 @@ | ||
{ | ||
"overrides": [ | ||
{ | ||
"files": "**/src/*.ts", | ||
"options": { | ||
"parser": "typescript" | ||
} | ||
} | ||
], | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all" | ||
} | ||
"overrides": [ | ||
{ | ||
"files": "**/src/*.ts", | ||
"options": { | ||
"parser": "typescript" | ||
} | ||
} | ||
], | ||
"singleQuote": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all" | ||
} |
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,22 +1,19 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + React + TS</title> | ||
</head> | ||
|
||
<head> | ||
<meta charset="UTF-8" /> | ||
<link rel="icon" type="image/svg+xml" href="/vite.svg" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
<title>Vite + React + TS</title> | ||
|
||
</head> | ||
|
||
<body> | ||
<script type="module"> | ||
import { Buffer } from "buffer"; | ||
window.Buffer = Buffer; | ||
window.global = window | ||
</script> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></script> | ||
</body> | ||
|
||
</html> | ||
<body> | ||
<script type="module"> | ||
import { Buffer } from 'buffer'; | ||
window.Buffer = Buffer; | ||
window.global = window; | ||
</script> | ||
<div id="root"></div> | ||
<script type="module" src="/src/main.tsx"></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
Oops, something went wrong.