@hiddenability/opinionated-defaults-linux-arm64 0.1.25 → 0.1.27
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 +39 -2
- package/bin/bin +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,41 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
1
3
|
# 
|
|
2
4
|
|
|
3
|
-
|
|
5
|
+

|
|
6
|
+
|
|
7
|
+
A collection of opinionated web-dev tooling configurations.
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+

|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+
|
|
15
|
+

|
|
16
|
+

|
|
17
|
+

|
|
18
|
+
|
|
19
|
+
</div>
|
|
20
|
+
|
|
21
|
+
## Quickstart
|
|
22
|
+
|
|
23
|
+
> [!NOTE]
|
|
24
|
+
> The package manager that the CLI will use to install this package is dependent on what lockfile you have in the root of your project (i.e., having bun.lock will use bun, while having package-lock.json will use npm).
|
|
25
|
+
>
|
|
26
|
+
> **Currently, the only supported package managers are bun and npm**.
|
|
27
|
+
|
|
28
|
+
This package contains a CLI that can be used to generate both eslint.config.ts and prettier.config.mjs files.
|
|
29
|
+
|
|
30
|
+
You can use it by running one of the following commands.
|
|
31
|
+
|
|
32
|
+
```
|
|
33
|
+
bunx @hiddenability/opinionated-defaults
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
```
|
|
37
|
+
npx @hiddenability/opinionated-defaults
|
|
38
|
+
```
|
|
4
39
|
|
|
5
40
|
## Supported Framework Configurations:
|
|
6
41
|
|
|
@@ -60,7 +95,9 @@ A collection of opinionated tooling configurations.
|
|
|
60
95
|
- [prettier-plugin-tailwindcss](https://github.com/tailwindlabs/prettier-plugin-tailwindcss)
|
|
61
96
|
- [prettier-plugin-sort-imports](https://github.com/trivago/prettier-plugin-sort-imports)
|
|
62
97
|
|
|
63
|
-
## Installation:
|
|
98
|
+
## Manual Installation:
|
|
99
|
+
|
|
100
|
+
Alternatively, you can install it manually by running one of the following commands.
|
|
64
101
|
|
|
65
102
|
```
|
|
66
103
|
bun add @hiddenability/opinionated-defaults -d
|
package/bin/bin
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiddenability/opinionated-defaults-linux-arm64",
|
|
3
3
|
"description": "Opinionated default configurations for webdev tools.",
|
|
4
|
-
"version": "0.1.
|
|
4
|
+
"version": "0.1.27",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/HiddenAbilitree/opinionated-defaults.git"
|