@4mbl/lint 0.0.0-alpha.dd19431 → 0.0.0-alpha.e093f18

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/CHANGELOG.md CHANGED
@@ -1,5 +1,117 @@
1
1
  # @4mbl/lint
2
2
 
3
+ ## 1.0.0-beta.20
4
+
5
+ ### Minor Changes
6
+
7
+ - 0a0c233: Upgrade dependencies
8
+
9
+ ## 1.0.0-beta.19
10
+
11
+ ### Minor Changes
12
+
13
+ - 4d35fb5: [react] Disable react/jsx-no-literals rule
14
+
15
+ ## 1.0.0-beta.18
16
+
17
+ ### Minor Changes
18
+
19
+ - a50c3f4: Upgrade dependencies
20
+
21
+ ## 1.0.0-beta.17
22
+
23
+ ### Minor Changes
24
+
25
+ - f0f62f4: Upgrade dependencies
26
+
27
+ ## 1.0.0-beta.16
28
+
29
+ ### Minor Changes
30
+
31
+ - b303b6f: Upgrade dependencies
32
+
33
+ ## 1.0.0-beta.15
34
+
35
+ ### Minor Changes
36
+
37
+ - aa95edc: Upgrade dependencies
38
+
39
+ ## 1.0.0-beta.14
40
+
41
+ ### Minor Changes
42
+
43
+ - e34f9fe: Enable import plugin in base
44
+ - 5586655: Disable some import plugin rules in base
45
+ - 9b2b412: Disable `no-nodejs-modules` in node
46
+
47
+ ## 1.0.0-beta.13
48
+
49
+ ### Minor Changes
50
+
51
+ - dd66007: Pin dependencies to ensure future compatibility
52
+ - 0feb87d: Remove unused dependencies and inline trivial imports
53
+ - 1d98a33: Disable `react/forbid-component-props` and `react/forbid-dom-props` to ensure Tailwind compatibility
54
+ - a9085f2: Extend inherited plugins in child presets
55
+ - 014d999: Allow `eslint/no-underscore-dangle` for `__dirname` and `__filename` in node
56
+
57
+ ## 1.0.0-beta.12
58
+
59
+ ### Minor Changes
60
+
61
+ - aee0259: Upgrade dependencies
62
+
63
+ ## 1.0.0-beta.11
64
+
65
+ ### Minor Changes
66
+
67
+ - 20b3dae: Use native rules for React when possible
68
+
69
+ ## 1.0.0-beta.10
70
+
71
+ ### Minor Changes
72
+
73
+ - 007a287: Configure more rules to reduce noise
74
+ - 007a287: Use native only-export-components rule instead of js plugin
75
+ - 007a287: Use correct namespace for Next.js rules
76
+
77
+ ## 1.0.0-beta.9
78
+
79
+ ### Minor Changes
80
+
81
+ - 491164e: Add --help flag to cli
82
+ - 491164e: Fallback to Oxlint config lookup if no preset is passed to CLI and Oxlint config exists within working directory.
83
+
84
+ ## 1.0.0-beta.8
85
+
86
+ ### Minor Changes
87
+
88
+ - a78f42b: Configure rules to reduce noise
89
+
90
+ ## 1.0.0-beta.7
91
+
92
+ ### Minor Changes
93
+
94
+ - 7c82f22: Upgrade dependencies
95
+
96
+ ## 1.0.0-beta.6
97
+
98
+ ### Minor Changes
99
+
100
+ - 0422e86: Upgrade dependencies
101
+
102
+ ## 1.0.0-beta.5
103
+
104
+ ### Minor Changes
105
+
106
+ - 125b851: Enable most rule categories
107
+ - 473bad0: Upgrade dependencies
108
+
109
+ ## 1.0.0-beta.4
110
+
111
+ ### Minor Changes
112
+
113
+ - 10abc93: Upgrade dependencies
114
+
3
115
  ## 1.0.0-beta.3
4
116
 
5
117
  ### Minor Changes
package/bin/cli.js CHANGED
@@ -1,6 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  import { spawnSync } from 'node:child_process';
4
+ import { existsSync } from 'node:fs';
4
5
  import path from 'node:path';
5
6
  import { fileURLToPath } from 'node:url';
6
7
 
@@ -15,11 +16,38 @@ const wrapperArgs =
15
16
  separatorIndex === -1 ? rawArgs : rawArgs.slice(0, separatorIndex);
16
17
  const toolArgs = separatorIndex === -1 ? [] : rawArgs.slice(separatorIndex + 1);
17
18
 
19
+ if (wrapperArgs.includes('--help') || rawArgs.includes('-h')) {
20
+ console.log(`
21
+ Usage:
22
+ lint [options] -- [oxlint options]
23
+
24
+ Options:
25
+ --preset <name> Use a preset config (default: base if no config within cwd)
26
+
27
+ Examples:
28
+ lint
29
+ lint --preset node
30
+ lint -- src --fix
31
+
32
+ Notes:
33
+ Everything after "--" is passed directly to oxlint.
34
+ `);
35
+
36
+ process.exit(0);
37
+ }
38
+
18
39
  const presetArgIndex = wrapperArgs.findIndex((a) => a === '--preset');
40
+
19
41
  const presetName =
20
- presetArgIndex !== -1 ? wrapperArgs[presetArgIndex + 1] : 'base';
42
+ presetArgIndex !== -1
43
+ ? wrapperArgs[presetArgIndex + 1]
44
+ : !existsSync('./oxlint.config.ts') && !existsSync('./.oxlintrc.json')
45
+ ? 'base'
46
+ : undefined;
21
47
 
22
- const configPath = path.resolve(__dirname, `../dist/${presetName}.js`);
48
+ const configPath = presetName
49
+ ? path.resolve(__dirname, `../dist/${presetName}.js`)
50
+ : undefined;
23
51
 
24
52
  const hasPath = toolArgs.some((a) => !a.startsWith('-'));
25
53
  const hasMaxWarn = toolArgs.some((a) => a.startsWith('--max-warnings'));
@@ -28,7 +56,7 @@ const hasReportUnused = toolArgs.some((a) =>
28
56
  );
29
57
 
30
58
  const finalArgs = [
31
- '--config',
59
+ configPath ? '--config' : undefined,
32
60
  configPath,
33
61
  hasPath ? undefined : 'src',
34
62
  hasMaxWarn ? undefined : '--max-warnings=0',