-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: select dropdown styles wonky (#102)
- Loading branch information
Showing
4 changed files
with
1,636 additions
and
999 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 |
---|---|---|
|
@@ -6,3 +6,5 @@ dist | |
.cache | ||
.temp | ||
.git-blame-ignore-revs | ||
build | ||
coverage |
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 |
---|---|---|
@@ -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", | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.