@4mbl/lint 0.0.0-beta.605bb21 → 0.0.0-beta.afda011
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.
- package/README.md +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,7 +19,7 @@ npm install -D @4mbl/lint
|
|
|
19
19
|
Create a `eslint.config.ts` file in the root of your project with the desired configuration. This package currently uses eslint. That might change in a future major release.
|
|
20
20
|
|
|
21
21
|
```js
|
|
22
|
-
import defaultConfig, { Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
|
|
22
|
+
import defaultConfig, { type Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
|
|
23
23
|
|
|
24
24
|
export default [...defaultConfig] satisfies Config[];
|
|
25
25
|
```
|