@solvro/config 2.2.1 → 2.3.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 +14 -2
- package/dist/cli/index.cjs +349 -151
- package/dist/cli/index.cjs.map +1 -1
- package/dist/cli/index.js +350 -152
- package/dist/cli/index.js.map +1 -1
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -50,9 +50,9 @@ Aby użyć configu dodaj to pole w `package.json`:
|
|
|
50
50
|
}
|
|
51
51
|
```
|
|
52
52
|
|
|
53
|
-
##
|
|
53
|
+
## ESLint
|
|
54
54
|
|
|
55
|
-
Wymagany jest `eslint` w wersji `9`
|
|
55
|
+
Wymagany jest `eslint` w wersji `9` oraz package.json powinien mieć pole
|
|
56
56
|
|
|
57
57
|
```json
|
|
58
58
|
{
|
|
@@ -103,3 +103,15 @@ Testy obejmują:
|
|
|
103
103
|
- ✅ Weryfikację formatowania kodu
|
|
104
104
|
- ✅ Build aplikacji Next.js
|
|
105
105
|
- ✅ Testowanie warunków błędów
|
|
106
|
+
|
|
107
|
+
## Prawa autorskie
|
|
108
|
+
|
|
109
|
+
Copyright © 2024-2026 KN Solvro
|
|
110
|
+
|
|
111
|
+
Licencja: [MPL v2.0](./LICENSE.md)
|
|
112
|
+
|
|
113
|
+
Pierwotny twórca: [Bartosz Gotowski](https://github.com/Rei-x)
|
|
114
|
+
|
|
115
|
+
Utrzymuje: [Konrad Guzek](https://github.com/kguzek)
|
|
116
|
+
|
|
117
|
+
Stworzone na podstawie projektu [antfu/eslint-config](https://github.com/antfu/eslint-config), którego licencja dostępna jest w pliku [LICENSE2.md](./LICENSE2.md)
|