@haldi/dotfiles
v2.0.2
Published
Haldi.com | Dotfiles for consistent application config.
Downloads
27
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 @haldi/dotfiles -D
# or
yarn add @haldi/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('@haldi/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('@haldi/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('@haldi/dotfiles/dist/.stylelintrc');
module.exports = stylelint;
GraphQL Codegen
- Add the
GRAPHQL_URL
to your.env
file in the root of the application - Add the follow scripts to the
package.json
"generate": "cross-env NODE_OPTIONS=\"-r dotenv/config\" npm run generate:types",
"generate:types": "graphql-codegen --config ./node_modules/@haldi/dotfiles/dist/codegen.yml",