@noxickon/codex 0.2.4 → 0.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/eslint/base.config.js +18 -4
- package/package.json +12 -12
package/eslint/base.config.js
CHANGED
|
@@ -21,9 +21,23 @@ export function createBaseConfig(options = {}) {
|
|
|
21
21
|
const { tailwindEntryPoint = './src/tailwind.css', enableTailwind = true } = options;
|
|
22
22
|
|
|
23
23
|
const baseConfig = [
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
24
|
+
{
|
|
25
|
+
ignores: [
|
|
26
|
+
'dist',
|
|
27
|
+
'storybook-static',
|
|
28
|
+
'coverage',
|
|
29
|
+
'node_modules',
|
|
30
|
+
'.next',
|
|
31
|
+
'out',
|
|
32
|
+
'vendor/**',
|
|
33
|
+
'public/**',
|
|
34
|
+
'bootstrap/**',
|
|
35
|
+
'storage/**',
|
|
36
|
+
'resources/js/actions/**',
|
|
37
|
+
'resources/js/routes/**',
|
|
38
|
+
'resources/js/wayfinder/**',
|
|
39
|
+
],
|
|
40
|
+
},
|
|
27
41
|
js.configs.recommended,
|
|
28
42
|
...tseslint.configs.recommended,
|
|
29
43
|
prettierConfig,
|
|
@@ -191,7 +205,7 @@ export function createBaseConfig(options = {}) {
|
|
|
191
205
|
'better-tailwind/enforce-shorthand-classes': 'warn',
|
|
192
206
|
'better-tailwind/no-unnecessary-whitespace': 'warn',
|
|
193
207
|
'better-tailwind/no-duplicate-classes': 'warn',
|
|
194
|
-
'better-tailwind/no-
|
|
208
|
+
'better-tailwind/no-unknown-classes': 'off',
|
|
195
209
|
},
|
|
196
210
|
});
|
|
197
211
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@noxickon/codex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"author": "noxickon",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"description": "Shared ESLint & Prettier configuration for noxickon projects",
|
|
@@ -20,22 +20,22 @@
|
|
|
20
20
|
"config"
|
|
21
21
|
],
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"eslint": "^9.0.0",
|
|
24
|
-
"prettier": "^3.0.0",
|
|
25
23
|
"@eslint/js": "^9.0.0",
|
|
26
|
-
"
|
|
27
|
-
"globals": "^16.0.0",
|
|
28
|
-
"eslint-plugin-unicorn": "^62.0.0",
|
|
24
|
+
"eslint": "^9.0.0",
|
|
29
25
|
"eslint-config-prettier": "^10.0.0",
|
|
30
|
-
"eslint-plugin-
|
|
31
|
-
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
32
|
-
"eslint-plugin-unused-imports": "^4.0.0",
|
|
33
|
-
"eslint-plugin-better-tailwindcss": "^3.0.0",
|
|
26
|
+
"eslint-plugin-better-tailwindcss": "^4.0.0",
|
|
34
27
|
"eslint-plugin-jsx-a11y": "^6.0.0",
|
|
35
|
-
"eslint-plugin-
|
|
28
|
+
"eslint-plugin-perfectionist": "^5.4.0",
|
|
36
29
|
"eslint-plugin-react-compiler": "*",
|
|
30
|
+
"eslint-plugin-react-hooks": "^7.0.0",
|
|
37
31
|
"eslint-plugin-react-refresh": "^0.4.0",
|
|
38
|
-
"
|
|
32
|
+
"eslint-plugin-sort-destructure-keys": "^2.0.0",
|
|
33
|
+
"eslint-plugin-unicorn": "^62.0.0",
|
|
34
|
+
"eslint-plugin-unused-imports": "^4.0.0",
|
|
35
|
+
"globals": "^17.1.0",
|
|
36
|
+
"prettier": "^3.8.1",
|
|
37
|
+
"prettier-plugin-tailwindcss": "^0.7.0",
|
|
38
|
+
"typescript-eslint": "^8.53.1"
|
|
39
39
|
},
|
|
40
40
|
"peerDependenciesMeta": {
|
|
41
41
|
"eslint-plugin-better-tailwindcss": {
|