1.2.5
What's Changed
Change brings in allowance for an additional config for further compatibility with an editor.
VSCode (or other Editor) Config
While most packages and config will work out of the box there are a number of configs that need defining to give yourself the best compatibility with your Editor setup. These include:
- Prettier
- ESLint
To get these working correctly with your Editor you simply need to reference them in your package.json
as seen below for prettier
and eslintConfig
keys.
{
"name": "my-package",
"version": "1.0.0",
"prettier": "@bigbite/build-tools/configs/prettier",
"eslintConfig": {
"extends": "./node_modules/@bigbite/build-tools/configs/eslint",
},
"dependencies": {}
}
Changelog
- Alter eslint config to not use function by @ampersarnie in #97
Full Changelog: 1.2.4...1.2.5