@noxickon/codex 0.1.13 → 0.2.1

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 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
 
@@ -8,6 +8,7 @@
8
8
  */
9
9
 
10
10
  import js from '@eslint/js';
11
+ import prettierConfig from 'eslint-config-prettier';
11
12
  import betterTailwind from 'eslint-plugin-better-tailwindcss';
12
13
  import perfectionist from 'eslint-plugin-perfectionist';
13
14
  import sortDestructureKeys from 'eslint-plugin-sort-destructure-keys';
@@ -25,6 +26,7 @@ export function createBaseConfig(options = {}) {
25
26
  },
26
27
  js.configs.recommended,
27
28
  ...tseslint.configs.recommended,
29
+ prettierConfig,
28
30
  {
29
31
  files: ['**/*.{ts,tsx,js,jsx}'],
30
32
  languageOptions: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@noxickon/codex",
3
- "version": "0.1.13",
3
+ "version": "0.2.1",
4
4
  "author": "noxickon",
5
5
  "license": "MIT",
6
6
  "description": "Shared ESLint & Prettier configuration for noxickon projects",
@@ -26,7 +26,8 @@
26
26
  "typescript-eslint": "^8.0.0",
27
27
  "globals": "^16.0.0",
28
28
  "eslint-plugin-unicorn": "^62.0.0",
29
- "eslint-plugin-perfectionist": "^4.0.0",
29
+ "eslint-config-prettier": "^10.0.0",
30
+ "eslint-plugin-perfectionist": "^5.0.0",
30
31
  "eslint-plugin-sort-destructure-keys": "^2.0.0",
31
32
  "eslint-plugin-unused-imports": "^4.0.0",
32
33
  "eslint-plugin-better-tailwindcss": "^3.0.0",