@4mbl/lint 1.0.0-beta.7 → 1.0.0-beta.8
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 +6 -0
- package/dist/base.d.ts +254 -208
- package/dist/base.d.ts.map +1 -1
- package/dist/base.js +137 -106
- package/dist/base.js.map +1 -1
- package/dist/node.d.ts +254 -208
- package/dist/node.d.ts.map +1 -1
- package/dist/react.d.ts +254 -208
- package/dist/react.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/base.js
CHANGED
|
@@ -21,113 +21,144 @@ function baseConfig(_options) {
|
|
|
21
21
|
typeAware: true,
|
|
22
22
|
},
|
|
23
23
|
rules: {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
'no-
|
|
28
|
-
'
|
|
29
|
-
'
|
|
30
|
-
'
|
|
31
|
-
'no-
|
|
32
|
-
'no-
|
|
33
|
-
'no-
|
|
34
|
-
'no-
|
|
35
|
-
'no-
|
|
36
|
-
'no-
|
|
37
|
-
'no-
|
|
38
|
-
'no-
|
|
39
|
-
'no-
|
|
40
|
-
'no-
|
|
41
|
-
'no-
|
|
42
|
-
'no-
|
|
43
|
-
'no-
|
|
44
|
-
'no-empty
|
|
45
|
-
'no-empty-
|
|
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-
|
|
59
|
-
'no-
|
|
60
|
-
'no-
|
|
61
|
-
'no-
|
|
62
|
-
'no-
|
|
63
|
-
'no-
|
|
64
|
-
'no-shadow-restricted-names': 'error',
|
|
65
|
-
'no-sparse-arrays': 'error',
|
|
66
|
-
'no-
|
|
67
|
-
'no-
|
|
68
|
-
'no-
|
|
69
|
-
'no-
|
|
70
|
-
'no-
|
|
71
|
-
'no-
|
|
72
|
-
'no-
|
|
73
|
-
'no-
|
|
74
|
-
'no-
|
|
75
|
-
'no-
|
|
76
|
-
'
|
|
77
|
-
'
|
|
78
|
-
'
|
|
79
|
-
'no-
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'
|
|
83
|
-
'
|
|
84
|
-
'no-
|
|
85
|
-
'
|
|
86
|
-
'
|
|
87
|
-
'
|
|
88
|
-
'
|
|
89
|
-
'
|
|
90
|
-
'
|
|
91
|
-
'
|
|
92
|
-
'
|
|
93
|
-
'
|
|
94
|
-
'
|
|
95
|
-
'
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
'
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
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': 'warn', // easier to just use undefined
|
|
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
|
+
'eslint/no-duplicate-imports': [
|
|
127
|
+
'warn',
|
|
128
|
+
{ allowSeparateTypeImports: true },
|
|
129
|
+
],
|
|
130
|
+
// Array.from() is slower than new Array()
|
|
131
|
+
// https://jsperf.app/tatuse
|
|
132
|
+
'unicorn/no-new-array': 'off',
|
|
133
|
+
'eslint/no-array-constructor': 'warn',
|
|
134
|
+
// consider enabling in library-focused template
|
|
135
|
+
'typescript/explicit-function-return-type': 'off',
|
|
136
|
+
'typescript/explicit-module-boundary-types': 'off',
|
|
137
|
+
// may revisit
|
|
138
|
+
'unicorn/no-anonymous-default-export': 'off',
|
|
139
|
+
'eslint/sort-imports': 'off', // consider when oxfmt is setup
|
|
140
|
+
// currently produces too many false positives
|
|
141
|
+
'eslint/no-magic-numbers': 'off',
|
|
142
|
+
'unicorn/prefer-modern-math-apis': 'off',
|
|
143
|
+
'eslint/no-use-before-define': 'off',
|
|
144
|
+
// handled by typescript compiler
|
|
145
|
+
'eslint/constructor-super': 'off',
|
|
146
|
+
'eslint/getter-return': 'off',
|
|
147
|
+
'eslint/no-dupe-class-members': 'off',
|
|
148
|
+
'eslint/no-dupe-keys': 'off',
|
|
149
|
+
'eslint/no-new-native-nonconstructor': 'off',
|
|
150
|
+
'eslint/no-setter-return': 'off',
|
|
151
|
+
'eslint/no-this-before-super': 'off',
|
|
152
|
+
'eslint/no-undef': 'off',
|
|
153
|
+
'eslint/no-unreachable': 'off', // typescript handles this if `allowUnreachableCode: false` is configured
|
|
154
|
+
'eslint/no-with': 'off',
|
|
155
|
+
// conflicts with prettier
|
|
156
|
+
'unicorn/no-nested-ternary': 'off',
|
|
157
|
+
// disabled rules that exist for legacy environments
|
|
158
|
+
'oxc/no-optional-chaining': 'off',
|
|
159
|
+
'oxc/no-rest-spread-properties': 'off',
|
|
160
|
+
'oxc/no-async-await': 'off',
|
|
102
161
|
},
|
|
103
|
-
overrides: [
|
|
104
|
-
{
|
|
105
|
-
files: ['**/*.{ts,tsx,mts,cts}'],
|
|
106
|
-
rules: {
|
|
107
|
-
'constructor-super': 'off',
|
|
108
|
-
'getter-return': 'off',
|
|
109
|
-
'no-class-assign': 'off',
|
|
110
|
-
'no-const-assign': 'off',
|
|
111
|
-
'no-dupe-class-members': 'off',
|
|
112
|
-
'no-dupe-keys': 'off',
|
|
113
|
-
'no-func-assign': 'off',
|
|
114
|
-
'no-import-assign': 'off',
|
|
115
|
-
'no-new-native-nonconstructor': 'off',
|
|
116
|
-
'no-obj-calls': 'off',
|
|
117
|
-
'no-redeclare': 'off',
|
|
118
|
-
'no-setter-return': 'off',
|
|
119
|
-
'no-this-before-super': 'off',
|
|
120
|
-
'no-undef': 'off',
|
|
121
|
-
'no-unreachable': 'off',
|
|
122
|
-
'no-unsafe-negation': 'off',
|
|
123
|
-
'no-var': 'error',
|
|
124
|
-
'no-with': 'off',
|
|
125
|
-
'prefer-const': 'error',
|
|
126
|
-
'prefer-rest-params': 'error',
|
|
127
|
-
'prefer-spread': 'error',
|
|
128
|
-
},
|
|
129
|
-
},
|
|
130
|
-
],
|
|
131
162
|
});
|
|
132
163
|
}
|
|
133
164
|
export { defineConfig, baseConfig };
|
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;QAClC,SAAS,EAAE,EAAE;QACb,UAAU,EAAE;YACV,WAAW,EAAE,OAAO;YACpB,UAAU,EAAE,MAAM;YAClB,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,MAAM;YACZ,KAAK,EAAE,MAAM;YACb,WAAW,EAAE,MAAM;YACnB,OAAO,EAAE,KAAK;SACf;QACD,GAAG,EAAE;YACH,OAAO,EAAE,IAAI;SACd;QACD,OAAO,EAAE;YACP,SAAS,EAAE,IAAI;SAChB;QACD,KAAK,EAAE;YACL,
|
|
1
|
+
{"version":3,"file":"base.js","sourceRoot":"","sources":["../src/base.ts"],"names":[],"mappings":"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"}
|