@4mbl/lint 1.0.0-beta.2 → 1.0.0-beta.20
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 +125 -2
- package/README.md +80 -26
- package/bin/cli.js +56 -9
- package/dist/base.d.ts +310 -106
- package/dist/base.d.ts.map +1 -1
- package/dist/base.js +159 -108
- package/dist/base.js.map +1 -1
- package/dist/next.d.ts +539 -1
- package/dist/next.d.ts.map +1 -1
- package/dist/next.js +53 -38
- package/dist/next.js.map +1 -1
- package/dist/node.d.ts +330 -107
- package/dist/node.d.ts.map +1 -1
- package/dist/node.js +13 -2
- package/dist/node.js.map +1 -1
- package/dist/react.d.ts +393 -114
- package/dist/react.d.ts.map +1 -1
- package/dist/react.js +22 -7
- package/dist/react.js.map +1 -1
- package/package.json +6 -8
package/dist/base.js
CHANGED
|
@@ -3,10 +3,16 @@ import { defineConfig } from 'oxlint';
|
|
|
3
3
|
function baseConfig(_options) {
|
|
4
4
|
// const opts = { ...DEFAULT_OPTIONS, ...options };
|
|
5
5
|
return defineConfig({
|
|
6
|
-
plugins: ['typescript', 'unicorn'],
|
|
6
|
+
plugins: ['import', 'typescript', 'unicorn'],
|
|
7
7
|
jsPlugins: [],
|
|
8
8
|
categories: {
|
|
9
|
-
correctness: '
|
|
9
|
+
correctness: 'error',
|
|
10
|
+
suspicious: 'warn',
|
|
11
|
+
pedantic: 'off',
|
|
12
|
+
perf: 'warn',
|
|
13
|
+
style: 'warn',
|
|
14
|
+
restriction: 'warn',
|
|
15
|
+
nursery: 'off',
|
|
10
16
|
},
|
|
11
17
|
env: {
|
|
12
18
|
builtin: true,
|
|
@@ -15,114 +21,159 @@ function baseConfig(_options) {
|
|
|
15
21
|
typeAware: true,
|
|
16
22
|
},
|
|
17
23
|
rules: {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
'no-
|
|
22
|
-
'
|
|
23
|
-
'
|
|
24
|
-
'
|
|
25
|
-
'no-
|
|
26
|
-
'no-
|
|
27
|
-
'no-
|
|
28
|
-
'no-
|
|
29
|
-
'no-
|
|
30
|
-
'no-
|
|
31
|
-
'no-
|
|
32
|
-
'no-
|
|
33
|
-
'no-
|
|
34
|
-
'no-
|
|
35
|
-
'no-
|
|
36
|
-
'no-
|
|
37
|
-
'no-
|
|
38
|
-
'no-empty
|
|
39
|
-
'no-empty-
|
|
40
|
-
'no-
|
|
41
|
-
'no-
|
|
42
|
-
'no-
|
|
43
|
-
'no-
|
|
44
|
-
'no-
|
|
45
|
-
'no-
|
|
46
|
-
'no-
|
|
47
|
-
'no-
|
|
48
|
-
'no-
|
|
49
|
-
'no-
|
|
50
|
-
'no-
|
|
51
|
-
'no-
|
|
52
|
-
'no-
|
|
53
|
-
'no-
|
|
54
|
-
'no-
|
|
55
|
-
'no-
|
|
56
|
-
'no-
|
|
57
|
-
'no-
|
|
58
|
-
'no-shadow-restricted-names': 'error',
|
|
59
|
-
'no-sparse-arrays': 'error',
|
|
60
|
-
'no-
|
|
61
|
-
'no-
|
|
62
|
-
'no-
|
|
63
|
-
'no-
|
|
64
|
-
'no-
|
|
65
|
-
'no-
|
|
66
|
-
'no-
|
|
67
|
-
'no-
|
|
68
|
-
'no-
|
|
69
|
-
'no-
|
|
70
|
-
'
|
|
71
|
-
'
|
|
72
|
-
'
|
|
73
|
-
'no-
|
|
74
|
-
'
|
|
75
|
-
'
|
|
76
|
-
'
|
|
77
|
-
'
|
|
78
|
-
'no-
|
|
79
|
-
'
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'
|
|
83
|
-
'
|
|
84
|
-
'
|
|
85
|
-
'
|
|
86
|
-
'
|
|
87
|
-
'
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
'
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
24
|
+
//* ERRORS - base rules that are always mistakes
|
|
25
|
+
// most are enabled by default in oxlint
|
|
26
|
+
// but turned on here explicitly to guarantee future compatibility
|
|
27
|
+
'eslint/no-var': 'warn',
|
|
28
|
+
'eslint/prefer-const': 'error',
|
|
29
|
+
'eslint/prefer-rest-params': 'error',
|
|
30
|
+
'eslint/prefer-spread': 'error',
|
|
31
|
+
'eslint/no-async-promise-executor': 'error',
|
|
32
|
+
'eslint/no-case-declarations': 'error',
|
|
33
|
+
'eslint/no-class-assign': 'error',
|
|
34
|
+
'eslint/no-compare-neg-zero': 'error',
|
|
35
|
+
'eslint/no-cond-assign': 'error',
|
|
36
|
+
'eslint/no-const-assign': 'error',
|
|
37
|
+
'eslint/no-constant-binary-expression': 'error',
|
|
38
|
+
'eslint/no-constant-condition': 'error',
|
|
39
|
+
'eslint/no-control-regex': 'error',
|
|
40
|
+
'eslint/no-debugger': 'error',
|
|
41
|
+
'eslint/no-delete-var': 'error',
|
|
42
|
+
'eslint/no-dupe-else-if': 'error',
|
|
43
|
+
'eslint/no-duplicate-case': 'error',
|
|
44
|
+
'eslint/no-empty': 'error',
|
|
45
|
+
'eslint/no-empty-character-class': 'error',
|
|
46
|
+
'eslint/no-empty-pattern': 'error',
|
|
47
|
+
'eslint/no-empty-static-block': 'error',
|
|
48
|
+
'eslint/no-ex-assign': 'error',
|
|
49
|
+
'eslint/no-extra-boolean-cast': 'error',
|
|
50
|
+
'eslint/no-fallthrough': ['error', { allowEmptyCase: true }],
|
|
51
|
+
'eslint/no-func-assign': 'error',
|
|
52
|
+
'eslint/no-global-assign': 'error',
|
|
53
|
+
'eslint/no-import-assign': 'error',
|
|
54
|
+
'eslint/no-invalid-regexp': 'error',
|
|
55
|
+
'eslint/no-irregular-whitespace': 'error',
|
|
56
|
+
'eslint/no-loss-of-precision': 'error',
|
|
57
|
+
'eslint/no-misleading-character-class': 'error',
|
|
58
|
+
'eslint/no-nonoctal-decimal-escape': 'error',
|
|
59
|
+
'eslint/no-obj-calls': 'error',
|
|
60
|
+
'eslint/no-prototype-builtins': 'error',
|
|
61
|
+
'eslint/no-redeclare': 'error',
|
|
62
|
+
'eslint/no-regex-spaces': 'error',
|
|
63
|
+
'eslint/no-self-assign': 'error',
|
|
64
|
+
'eslint/no-shadow-restricted-names': 'error',
|
|
65
|
+
'eslint/no-sparse-arrays': 'error',
|
|
66
|
+
'eslint/no-unexpected-multiline': 'error',
|
|
67
|
+
'eslint/no-unsafe-finally': 'error',
|
|
68
|
+
'eslint/no-unsafe-negation': 'error',
|
|
69
|
+
'eslint/no-unsafe-optional-chaining': 'error',
|
|
70
|
+
'eslint/no-unused-labels': 'error',
|
|
71
|
+
'eslint/no-unused-private-class-members': 'error',
|
|
72
|
+
'eslint/no-unused-vars': 'warn',
|
|
73
|
+
'eslint/no-useless-backreference': 'error',
|
|
74
|
+
'eslint/no-useless-catch': 'error',
|
|
75
|
+
'eslint/no-useless-escape': 'error',
|
|
76
|
+
'eslint/require-yield': 'error',
|
|
77
|
+
'eslint/use-isnan': 'error',
|
|
78
|
+
'eslint/valid-typeof': 'error',
|
|
79
|
+
'eslint/no-unused-expressions': 'warn',
|
|
80
|
+
'typescript/ban-ts-comment': 'error',
|
|
81
|
+
'typescript/no-duplicate-enum-values': 'off', // enums are not recommended
|
|
82
|
+
'typescript/no-empty-object-type': 'error',
|
|
83
|
+
'typescript/no-explicit-any': 'error',
|
|
84
|
+
'typescript/no-extra-non-null-assertion': 'error',
|
|
85
|
+
'typescript/no-misused-new': 'error',
|
|
86
|
+
'typescript/no-namespace': 'error',
|
|
87
|
+
'typescript/no-non-null-asserted-optional-chain': 'error',
|
|
88
|
+
'typescript/no-require-imports': 'error',
|
|
89
|
+
'typescript/no-this-alias': 'error',
|
|
90
|
+
'typescript/no-unnecessary-type-constraint': 'error',
|
|
91
|
+
'typescript/no-unsafe-declaration-merging': 'error',
|
|
92
|
+
'typescript/no-unsafe-function-type': 'error',
|
|
93
|
+
'typescript/no-wrapper-object-types': 'error',
|
|
94
|
+
'typescript/prefer-as-const': 'error',
|
|
95
|
+
'typescript/triple-slash-reference': 'error',
|
|
96
|
+
//* OTHER RULES
|
|
97
|
+
// members are public by default so no need to be explicit
|
|
98
|
+
'typescript/explicit-member-accessibility': [
|
|
99
|
+
'warn',
|
|
100
|
+
{ accessibility: 'no-public' },
|
|
101
|
+
],
|
|
102
|
+
// too pedantic
|
|
103
|
+
'eslint/id-length': 'off',
|
|
104
|
+
'eslint/sort-keys': 'off',
|
|
105
|
+
'eslint/capitalized-comments': 'off',
|
|
106
|
+
'eslint/func-style': 'off',
|
|
107
|
+
'eslint/complexity': 'off',
|
|
108
|
+
'eslint/max-params': 'off',
|
|
109
|
+
'eslint/no-ternary': 'off',
|
|
110
|
+
'eslint/curly': 'warn',
|
|
111
|
+
'typescript/consistent-type-definitions': ['warn', 'type'],
|
|
112
|
+
'eslint/max-statements': 'off',
|
|
113
|
+
'typescript/consistent-return': 'off', // allow implicit return
|
|
114
|
+
'unicorn/switch-case-braces': 'warn',
|
|
115
|
+
'typescript/prefer-regexp-exec': 'warn',
|
|
116
|
+
'eslint/init-declarations': 'off',
|
|
117
|
+
'unicorn/no-null': 'off', // too strict, for example JSON.stringify requires null parameter, null is also required in react
|
|
118
|
+
'eslint/no-undefined': 'off', // undefined is necessary
|
|
119
|
+
'eslint/no-console': 'off', // browser is no longer the only environment js is run on
|
|
120
|
+
'eslint/no-continue': 'off', // early-continue is useful
|
|
121
|
+
'eslint/no-implicit-coercion': ['warn', { allow: ['!!'] }],
|
|
122
|
+
'eslint/no-plusplus': 'off', // makes for-loops too noisy, ASI is rarely a problem
|
|
123
|
+
'eslint/no-void': 'off', // void is useful for explicitly indicating floating promises
|
|
124
|
+
'eslint/no-nested-ternary': 'off', // ternaries are cleaner and necessary due to lack of match expressions
|
|
125
|
+
'eslint/no-empty-function': ['warn', { allow: ['constructors'] }], // empty constructors are allowed for explicit singleton pattern
|
|
126
|
+
'unicorn/no-instanceof-builtins': 'off', // better typesafety than using `typeof`
|
|
127
|
+
'unicorn/prefer-spread': 'off', // conflicts with other rules
|
|
128
|
+
'eslint/new-cap': 'off', // false positives
|
|
129
|
+
'unicorn/no-await-expression-member': 'off', // accessing await result directly is more desired than slight readability improvement
|
|
130
|
+
'eslint/no-duplicate-imports': [
|
|
131
|
+
'warn',
|
|
132
|
+
{ allowSeparateTypeImports: true },
|
|
133
|
+
],
|
|
134
|
+
'import/no-named-export': 'off',
|
|
135
|
+
'import/no-default-export': 'off',
|
|
136
|
+
'import/prefer-default-export': 'off',
|
|
137
|
+
'import/no-namespace': 'off', // star imports are still pretty necessary
|
|
138
|
+
'import/exports-last': 'off', // star imports are still pretty necessary
|
|
139
|
+
'import/no-unassigned-import': 'off', // required for css imports
|
|
140
|
+
'import/group-exports': 'off', // co-locating export statement with the function it exports is more readable
|
|
141
|
+
'import/consistent-type-specifier-style': 'off', // single import per file is more readable
|
|
142
|
+
// Array.from() is slower than new Array()
|
|
143
|
+
// https://jsperf.app/tatuse
|
|
144
|
+
'unicorn/no-new-array': 'off',
|
|
145
|
+
'eslint/no-array-constructor': 'warn',
|
|
146
|
+
// consider enabling in library-focused template
|
|
147
|
+
'typescript/explicit-function-return-type': 'off',
|
|
148
|
+
'typescript/explicit-module-boundary-types': 'off',
|
|
149
|
+
// may revisit
|
|
150
|
+
'unicorn/no-anonymous-default-export': 'off',
|
|
151
|
+
'eslint/sort-imports': 'off', // consider when oxfmt is setup
|
|
152
|
+
'import/no-relative-parent-imports': 'off',
|
|
153
|
+
// currently produces too many false positives
|
|
154
|
+
'eslint/no-magic-numbers': 'off',
|
|
155
|
+
'unicorn/prefer-modern-math-apis': 'off',
|
|
156
|
+
'eslint/no-use-before-define': 'off',
|
|
157
|
+
// handled by typescript compiler
|
|
158
|
+
'eslint/constructor-super': 'off',
|
|
159
|
+
'eslint/getter-return': 'off',
|
|
160
|
+
'eslint/no-dupe-class-members': 'off',
|
|
161
|
+
'eslint/no-dupe-keys': 'off',
|
|
162
|
+
'eslint/no-new-native-nonconstructor': 'off',
|
|
163
|
+
'eslint/no-setter-return': 'off',
|
|
164
|
+
'eslint/no-this-before-super': 'off',
|
|
165
|
+
'eslint/no-undef': 'off',
|
|
166
|
+
'eslint/no-unreachable': 'off', // typescript handles this if `allowUnreachableCode: false` is configured
|
|
167
|
+
'eslint/no-with': 'off',
|
|
168
|
+
// conflicts with prettier
|
|
169
|
+
'unicorn/no-nested-ternary': 'off',
|
|
170
|
+
// disabled rules that exist for legacy environments
|
|
171
|
+
'oxc/no-optional-chaining': 'off',
|
|
172
|
+
'oxc/no-rest-spread-properties': 'off',
|
|
173
|
+
'oxc/no-async-await': 'off',
|
|
96
174
|
},
|
|
97
|
-
overrides: [
|
|
98
|
-
{
|
|
99
|
-
files: ['**/*.{ts,tsx,mts,cts}'],
|
|
100
|
-
rules: {
|
|
101
|
-
'constructor-super': 'off',
|
|
102
|
-
'getter-return': 'off',
|
|
103
|
-
'no-class-assign': 'off',
|
|
104
|
-
'no-const-assign': 'off',
|
|
105
|
-
'no-dupe-class-members': 'off',
|
|
106
|
-
'no-dupe-keys': 'off',
|
|
107
|
-
'no-func-assign': 'off',
|
|
108
|
-
'no-import-assign': 'off',
|
|
109
|
-
'no-new-native-nonconstructor': 'off',
|
|
110
|
-
'no-obj-calls': 'off',
|
|
111
|
-
'no-redeclare': 'off',
|
|
112
|
-
'no-setter-return': 'off',
|
|
113
|
-
'no-this-before-super': 'off',
|
|
114
|
-
'no-undef': 'off',
|
|
115
|
-
'no-unreachable': 'off',
|
|
116
|
-
'no-unsafe-negation': 'off',
|
|
117
|
-
'no-var': 'error',
|
|
118
|
-
'no-with': 'off',
|
|
119
|
-
'prefer-const': 'error',
|
|
120
|
-
'prefer-rest-params': 'error',
|
|
121
|
-
'prefer-spread': 'error',
|
|
122
|
-
},
|
|
123
|
-
},
|
|
124
|
-
],
|
|
125
175
|
});
|
|
126
176
|
}
|
|
127
177
|
export { defineConfig, baseConfig };
|
|
178
|
+
export default baseConfig();
|
|
128
179
|
//# sourceMappingURL=base.js.map
|
package/dist/base.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base.js","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAqB,MAAM,QAAQ,CAAC;AAIzD,2CAA2C;AAE3C,SAAS,UAAU,CAAC,QAA+B;IACjD,mDAAmD;IAEnD,OAAO,YAAY,CAAC;QAClB,OAAO,EAAE,CAAC,YAAY,EAAE,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"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"}
|