Merge pull request #16 from fuwaa/main

a
This commit is contained in:
Jariel Que 2022-07-16 14:17:35 +08:00 committed by GitHub
commit c48a87b635
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 16 additions and 19 deletions

View file

@ -9,4 +9,8 @@ name = "javascript"
enabled = true
[analyzers.meta]
plugins = ["react"]
plugins = ["react"]
[[transformers]]
name = "prettier"
enabled = true

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"]
}