@4mbl/lint 0.0.0-beta.afda011 → 0.1.0
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 +4 -4
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, {
|
|
22
|
+
import defaultConfig, { Config } from '@4mbl/lint/next'; // <-- change `next` to the desired template
|
|
23
23
|
|
|
24
24
|
export default [...defaultConfig] satisfies Config[];
|
|
25
25
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@4mbl/lint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "Linting configuration for various environments.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": "4mbl",
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"keywords": [
|
|
24
24
|
"lint"
|
|
25
25
|
],
|
|
26
|
+
"scripts": {},
|
|
26
27
|
"devDependencies": {
|
|
27
28
|
"@eslint/js": "^9.38.0",
|
|
28
29
|
"eslint": "^9.38.0",
|
|
@@ -30,6 +31,5 @@
|
|
|
30
31
|
"eslint-plugin-react-compiler": "19.1.0-rc.2",
|
|
31
32
|
"jiti": "^2.6.1",
|
|
32
33
|
"typescript-eslint": "^8.46.2"
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
}
|
|
34
|
+
}
|
|
35
|
+
}
|