This file contains hidden or 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
import js from "@eslint/js" | |
import pluginQuery from "@tanstack/eslint-plugin-query" | |
import eslintConfigPrettier from "eslint-config-prettier" | |
import hexagonalArchitecture from "eslint-plugin-hexagonal-architecture" | |
import globals from "globals" | |
import path from "path" | |
import tseslint from "typescript-eslint" | |
import { fileURLToPath } from "url" | |
const __filename = fileURLToPath(import.meta.url) |
This file contains hidden or 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
{ | |
"$schema": "http://json-schema.org/draft-07/schema", | |
"definitions": { | |
"reference": { | |
"type": "string", | |
"enum": [ "this will be overridden at build time to contain all style property names" ] | |
} | |
}, |
This file contains hidden or 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
/* Definimos las Custom properties */ | |
:root{ | |
/* Colores */ | |
--negro : #393939; | |
/* Tipografía */ | |
--tipo-principal : Helvetica, Arial, sans-serif; | |
--tipo-secundaria : Verdana; | |
} | |
This file contains hidden or 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
{ | |
"data": { | |
"summary": { | |
"total": "1000 Productos", | |
"segmented": ["582 Accesorios", "259 Lentes", "159 Monturas"] | |
}, | |
"products": [ | |
{ | |
"id": "sk101", | |
"images": [ |
This file contains hidden or 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
$scroll-track-color: none; | |
$scroll-thumb-color: #365b6d; | |
$scroll-size: 7px; | |
$scroll-radius: 10px; | |
* { | |
scrollbar-color: $scroll-thumb-color $scroll-track-color; | |
} | |
::-webkit-scrollbar { |