@haldi/dotfiles v2.0.2
🧩 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 -DUsage
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.jsin 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.jsin 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.jsin 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_URLto your.envfile 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",2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago