Skip to content
/ utils Public

Self notes, easy copy/paste utils (gitignore, prettier, yarn, css, ...)

Notifications You must be signed in to change notification settings

Maxime-p/utils

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 

Repository files navigation

README with some utils

.gitignore

OS

.DS_Store

IDEs

# JetBrain IDE's
.idea

# VSCode
.vscode

Yarn zero-install

.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

Yarn without zero-install

.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

Prettier

.prettierrc

{
  "semi": false,
  "trailingComma": "es5",
  "singleQuote": true,
  "tabWidth": 2,
  "useTabs": false,
  "plugins": ["@trivago/prettier-plugin-sort-imports"],
  "importOrder": ["^react(.*)$", "<THIRD_PARTY_MODULES>", "^@/", "^[./]"],
  "importOrderSeparation": true,
  "importOrderSortSpecifiers": true
}

.prettierignore

build
coverage
dist

CSS Light reset

* {
  margin: 0;
  box-sizing: border-box;
}

ol, ul {
  list-style: none;
  padding: 0;
}

.yarnrc.yml

nodeLinker: node-modules

plugins:
  - path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
    spec: "@yarnpkg/plugin-typescript"

yarnPath: .yarn/releases/yarn-3.5.0.cjs

About

Self notes, easy copy/paste utils (gitignore, prettier, yarn, css, ...)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published