@barguide/dotfiles
v1.0.6
Published
BarGuide.io | Dotfiles
Downloads
10
Maintainers
Readme
🧩 dotfiles
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 @barguide/dotfiles -D
# or
yarn add @barguide/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
- Create a
.eslintrc.js
in the root of the application - Paste the code below code into the new
.eslintrc.js
const eslint = require('@barguide/dotfiles/dist/.eslintrc');
module.exports = eslint;
Prettier
- Create a
.prettierrc.js
in the root of the application - Paste the code below code into the new
.prettierrc.js
const prettier = require('@barguide/dotfiles/dist/.prettierrc');
module.exports = prettier;
StyleLint
- Create a
.stylelintrc.js
in the root of the application - Paste the code below code into the new
.stylelintrc.js
const stylelint = require('@barguide/dotfiles/dist/.stylelintrc');
module.exports = stylelint;