@enke.dev/lint 0.6.4 → 0.6.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # @enke/lint
1
+ # @enke.dev/lint
2
2
 
3
3
  ## Install packages
4
4
 
5
5
  Make sure to install the necessary peer dependencies `eslint`, `prettier` and `typescript`.
6
6
 
7
7
  ```bash
8
- npm i -D @enke/lint eslint prettier typescript
8
+ npm i -D @enke.dev/lint eslint prettier typescript
9
9
  ```
10
10
 
11
11
  ## Prepare config
@@ -13,7 +13,7 @@ npm i -D @enke/lint eslint prettier typescript
13
13
  Create a `eslint.config.js` file in the root of your project and add the following content:
14
14
 
15
15
  ```js
16
- import config from '@enke/lint';
16
+ import config from '@enke.dev/lint';
17
17
 
18
18
  export default config;
19
19
  ```
@@ -25,14 +25,14 @@ If you intend to use Typescript for your config file, you just have to install `
25
25
  Your config file can then renamed to `eslint.config.ts` and look like this at minimum:
26
26
 
27
27
  ```ts
28
- import config from '@enke/lint';
28
+ import config from '@enke.dev/lint';
29
29
  export default config;
30
30
  ```
31
31
 
32
32
  But you may want to modify the config to your needs:
33
33
 
34
34
  ```ts
35
- import config from '@enke/lint';
35
+ import config from '@enke.dev/lint';
36
36
  import type { Linter } from 'eslint';
37
37
 
38
38
  export default [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@enke.dev/lint",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "description": "Meta package to provide linting for web projects",
5
5
  "homepage": "https://github.com/enke-dev/lint",
6
6
  "repository": {