Skip to content

Instantly share code, notes, and snippets.

View devEstivenValencia's full-sized avatar
🎯
Focusing

Estiven Valencia devEstivenValencia

🎯
Focusing
View GitHub Profile
@devEstivenValencia
devEstivenValencia / eslint.config.js
Last active September 4, 2025 18:23
eslint-plugin-hexagonal-architecture para v9+ de eslint
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)
{
"$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" ]
}
},
/* Definimos las Custom properties */
:root{
/* Colores */
--negro : #393939;
/* Tipografía */
--tipo-principal : Helvetica, Arial, sans-serif;
--tipo-secundaria : Verdana;
}
{
"data": {
"summary": {
"total": "1000 Productos",
"segmented": ["582 Accesorios", "259 Lentes", "159 Monturas"]
},
"products": [
{
"id": "sk101",
"images": [
@devEstivenValencia
devEstivenValencia / scrollbar.scss
Last active December 15, 2023 16:23
Custom scrollbar
$scroll-track-color: none;
$scroll-thumb-color: #365b6d;
$scroll-size: 7px;
$scroll-radius: 10px;
* {
scrollbar-color: $scroll-thumb-color $scroll-track-color;
}
::-webkit-scrollbar {