Format code with prettier

This commit fixes the style issues introduced in 6da9a22 according to the output
from prettier.

Details: https://deepsource.io/gh/fuwaa/pint/transform/e78e9d22-587c-4b5c-86f7-bd6f31068114/
This commit is contained in:
deepsource-autofix[bot] 2022-07-16 05:41:22 +00:00 committed by GitHub
parent 6da9a2275f
commit 3c81d3edec
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 11 additions and 18 deletions

View file

@ -3,4 +3,4 @@ module.exports = {
tailwindcss: {},
autoprefixer: {},
},
}
};

View file

@ -2,18 +2,19 @@
@tailwind components;
@tailwind utilities;
html, body {
html,
body {
/* width: 375px; */
margin: 0;
background-color: #0d1117;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
monospace;
}

View file

@ -46,4 +46,4 @@ export function updateMultiple(array, color) {
// function finalReturn(finalValue) {
// alert(`result is: ${finalValue}`);
// value = finalValue
// }
// }

View file

@ -1,10 +1,8 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
content: ["./src/**/*.{js,jsx,ts,tsx}"],
theme: {
extend: {},
},
plugins: [],
}
};

View file

@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@ -21,7 +17,5 @@
"jsx": "preserve",
"strictNullChecks": false
},
"include": [
"src"
]
"include": ["src"]
}