Skip to content

Commit

Permalink
fix: select dropdown styles wonky (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
jxjj authored Jan 17, 2025
1 parent a21d21b commit 2f05eb3
Show file tree
Hide file tree
Showing 4 changed files with 1,636 additions and 999 deletions.
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dist
.cache
.temp
.git-blame-ignore-revs
build
coverage
26 changes: 26 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
import globals from "globals";
import pluginJs from "@eslint/js";
import tseslint from "typescript-eslint";
import pluginVue from "eslint-plugin-vue";
import eslintConfigPrettier from "eslint-config-prettier";

/** @type {import('eslint').Linter.Config[]} */
export default [
{
files: ["**/*.{js,mjs,cjs,ts,vue}"],
},
{ languageOptions: { globals: globals.browser } },
pluginJs.configs.recommended,
...tseslint.configs.recommended,
...pluginVue.configs["flat/essential"],
{
files: ["**/*.vue"],
languageOptions: { parserOptions: { parser: tseslint.parser } },
},
eslintConfigPrettier,
{
rules: {
"@typescript-eslint/no-unused-vars": "warn",
},
},
];
Loading

0 comments on commit 2f05eb3

Please sign in to comment.