Skip to content

Commit

Permalink
fix: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
orig committed Sep 11, 2023
1 parent 9cacc56 commit e8f13a0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
3 changes: 1 addition & 2 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
node_modules

vite.config.ts
vite.config.ts
6 changes: 6 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@
{
"files": ["*.ts", "*.tsx", "*.js", "*.jsx"],
"rules": {
"max-len": [
"error",
{
"code": 140
}
],
"@nx/enforce-module-boundaries": [
"error",
{
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
branches:
- master
pull_request:
workflow_dispatch:

jobs:
main:
Expand Down
6 changes: 1 addition & 5 deletions apps/docs/docusaurus.config.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
// @ts-check
// Note: type annotations allow type checking and IDEs autocompletion

const lightCodeTheme = require('prism-react-renderer/themes/github');
const darkCodeTheme = require('prism-react-renderer/themes/dracula');

/** @type {import('@docusaurus/types').Config} */
const config = {
title: 'Reduced.to',
staticDirectories: ['apps/docs/public', 'apps/docs/static'],
tagline:
"Reduced.to is a modern web application that reduces the length of link URL, so it's easier to remember, share and track.",
tagline: "Reduced.to is a modern web application that reduces the length of link URL, so it's easier to remember, share and track.",
favicon: 'images/favicon.png',
url: 'https://reduced.to/',
baseUrl: '/',
Expand Down
8 changes: 4 additions & 4 deletions apps/docs/src/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
--ifm-color-primary-lightest: #478fff;
--ifm-code-font-size: 95%;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.1);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
}

/* For readability concerns, you should choose a lighter palette in dark mode. */
Expand All @@ -23,8 +23,8 @@
--ifm-color-primary-lighter: #478fff;
--ifm-color-primary-lightest: #478fff;
--docusaurus-highlighted-code-line-bg: rgba(0, 0, 0, 0.798);
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans',
'Helvetica Neue', sans-serif;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
}
.navbar {
background-color: transparent;
Expand Down

0 comments on commit e8f13a0

Please sign in to comment.