1.0.1-alpha.271 • Published 2 years ago

@rocketcms/dotfiles v1.0.1-alpha.271

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
2 years ago

🧩 dotfiles

image-dependencies image-minified image-types

image-downloads image-shaking

This package provides all the core pieces required for our ESlint, StyleLint, and Prettier configuration under a single package.

Installation

Install via your package manager

npm i @rocketcms/dotfiles -D

# or

yarn add @rocketcms/dotfiles -D

Usage

All we've really done is provdied an exportable version of some configuration. This allows each application to spread over that object to further customize as needed.

Each set of tools uses the same basic set of steps as seen below.

ESLint

  1. Create a .eslintrc.js in the root of the application
  2. Paste the code below code into the new .eslintrc.js
const eslint = require('@rocketcms/dotfiles/dist/.eslintrc');

module.exports = eslint;

Prettier

  1. Create a .prettierrc.js in the root of the application
  2. Paste the code below code into the new .prettierrc.js
const prettier = require('@rocketcms/dotfiles/dist/.prettierrc');

module.exports = prettier;

StyleLint

  1. Create a .stylelintrc.js in the root of the application
  2. Paste the code below code into the new .stylelintrc.js
const stylelint = require('@rocketcms/dotfiles/dist/.stylelintrc');

module.exports = stylelint;