mirror of
https://github.com/KevinMidboe/seasoned.git
synced 2026-03-10 03:19:32 +00:00
Feat: Dynamic colors (#101)
* On every route change, update local variables from query params * ResultSection is keyed to query to force re-render * Feat: vite & upgraded dependencies (#100) * On every route change, update local variables from query params * ResultSection is keyed to query to force re-render * Resolved lint warnings * replace webpack w/ vite * update all imports with alias @ and scss * vite environment variables, also typed * upgraded eslint, defined new rules & added ignore comments * resolved linting issues * moved index.html to project root * updated dockerfile w/ build stage before runtime image definition * sign drone config * dynamic colors from poster for popup bg & text colors * more torrents nav button now link elem & better for darker bg * make list item title clickable * removed extra no-shadow eslint rule definitions * fixed movie import * adhere to eslint rules & package.json clean command * remove debounce autocomplete search, track & hault on failure
This commit is contained in:
@@ -10,9 +10,7 @@ import prettierPlugin from "eslint-plugin-prettier";
|
||||
const CUSTOM_RULES = {
|
||||
"vue/no-v-model-argument": "off",
|
||||
"no-underscore-dangle": "off",
|
||||
"vue/multi-word-component-names": "off",
|
||||
"no-shadow": "off",
|
||||
"@typescript-eslint/no-shadow": ["error"]
|
||||
"vue/multi-word-component-names": "off"
|
||||
};
|
||||
|
||||
const gitignorePath = path.resolve(".", ".gitignore");
|
||||
@@ -35,6 +33,7 @@ const nodeConfig = defineConfig([plugins.node, ...configs.node.recommended]);
|
||||
const typescriptConfig = defineConfig([
|
||||
plugins.typescriptEslint,
|
||||
...configs.base.typescript
|
||||
// rules.typescript.typescriptEslintStrict
|
||||
]);
|
||||
|
||||
// Prettier config
|
||||
|
||||
Reference in New Issue
Block a user