Fix wrong package name #4

Merged
Ghost merged 1 commits from documentation/package-naming into master 2023-08-11 09:14:58 +02:00

View File

@ -14,10 +14,10 @@ Install the package:
```bash
# with yarn
yarn add -D @io-projects/eslint-config
yarn add -D @ioprojects/eslint-config
# with npm
npm install --save-dev @io-projects/eslint-config
npm install --save-dev @ioprojects/eslint-config
```
## Usage
@ -27,7 +27,7 @@ Add the following to your `.eslintrc.js` file:
```js
module.exports = {
extends: [
'@io-projects/eslint-config'
'@ioprojects/eslint-config'
]
}
```
@ -39,7 +39,7 @@ Add the following to your `.eslintrc.json` file:
```json
{
"extends": [
"@io-projects/eslint-config"
"@ioprojects/eslint-config"
]
}
```
@ -49,7 +49,7 @@ Add the following to your `.eslintrc.json` file:
Add the following to your `.eslintrc.cjs` file:
```js
module.exports = require('@ioprojects/ui-eslint-base');
module.exports = require('@ioprojects/eslint-config');
```
### Note for developers