@noxickon/codex 0.1.14 → 0.2.2
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 +3 -0
- package/eslint/base.config.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -21,6 +21,7 @@ npm install --save-dev \
|
|
|
21
21
|
@eslint/js \
|
|
22
22
|
typescript-eslint \
|
|
23
23
|
globals \
|
|
24
|
+
eslint-config-prettier \
|
|
24
25
|
eslint-plugin-unicorn \
|
|
25
26
|
eslint-plugin-perfectionist \
|
|
26
27
|
eslint-plugin-sort-destructure-keys \
|
|
@@ -49,6 +50,7 @@ npm install --save-dev \
|
|
|
49
50
|
@eslint/js \
|
|
50
51
|
typescript-eslint \
|
|
51
52
|
globals \
|
|
53
|
+
eslint-config-prettier \
|
|
52
54
|
eslint-plugin-unicorn \
|
|
53
55
|
eslint-plugin-perfectionist \
|
|
54
56
|
eslint-plugin-sort-destructure-keys \
|
|
@@ -153,6 +155,7 @@ export default createPrettierConfig({
|
|
|
153
155
|
- Better Tailwind CSS
|
|
154
156
|
- Unused Imports
|
|
155
157
|
- Sort Destructure Keys
|
|
158
|
+
- ESLint Config Prettier (Disables ESLint rules that conflict with Prettier)
|
|
156
159
|
|
|
157
160
|
### Prettier
|
|
158
161
|
|
package/eslint/base.config.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noxickon/codex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"author": "noxickon",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Shared ESLint & Prettier configuration for noxickon projects",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"globals": "^16.0.0",
|
|
28
28
|
"eslint-plugin-unicorn": "^62.0.0",
|
|
29
29
|
"eslint-config-prettier": "^10.0.0",
|
|
30
|
-
"eslint-plugin-perfectionist": "^
|
|
30
|
+
"eslint-plugin-perfectionist": "^5.0.0",
|
|
31
31
|
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
32
32
|
"eslint-plugin-unused-imports": "^4.0.0",
|
|
33
33
|
"eslint-plugin-better-tailwindcss": "^3.0.0",
|