fix: eslint not working on jsx/tsx files
This commit is contained in:
parent
80b6656e38
commit
f59dfa7232
2 changed files with 9 additions and 2 deletions
8
.vscode/settings.json
vendored
8
.vscode/settings.json
vendored
|
@ -83,7 +83,13 @@
|
||||||
"nix.serverPath": "nixd",
|
"nix.serverPath": "nixd",
|
||||||
|
|
||||||
"eslint.workingDirectories": [{ "mode": "auto" }],
|
"eslint.workingDirectories": [{ "mode": "auto" }],
|
||||||
"eslint.validate": ["javascript", "typescript", "svelte"],
|
"eslint.validate": [
|
||||||
|
"javascript",
|
||||||
|
"typescript",
|
||||||
|
"javascriptreact",
|
||||||
|
"typescriptreact",
|
||||||
|
"svelte"
|
||||||
|
],
|
||||||
|
|
||||||
"typescript.tsdk": "node_modules/typescript/lib",
|
"typescript.tsdk": "node_modules/typescript/lib",
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
import GithubLinkIcon from "../GithubLinkIcon"
|
|
||||||
import { faRss } from "@fortawesome/free-solid-svg-icons"
|
import { faRss } from "@fortawesome/free-solid-svg-icons"
|
||||||
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
import { FontAwesomeIcon } from "@fortawesome/react-fontawesome"
|
||||||
|
|
||||||
|
import GithubLinkIcon from "../GithubLinkIcon"
|
||||||
|
|
||||||
export default function Footer() {
|
export default function Footer() {
|
||||||
return (
|
return (
|
||||||
<footer className="flex h-32 justify-center bg-light-footer-bg px-4 text-light-footer-text dark:bg-dark-footer-bg dark:text-dark-footer-text">
|
<footer className="flex h-32 justify-center bg-light-footer-bg px-4 text-light-footer-text dark:bg-dark-footer-bg dark:text-dark-footer-text">
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue