bahlint 28.58.6934 → 28.58.693401
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 +15 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[](https://www.npmjs.com/package/bahlint)
|
|
2
2
|
[](https://www.npmjs.com/package/bahlint)
|
|
3
|
-
[](https://github.com/bahlint/bahlint/actions)
|
|
4
4
|
<br>
|
|
5
5
|
[](https://opencollective.com/eslint)
|
|
6
6
|
[](https://opencollective.com/eslint)
|
|
@@ -166,7 +166,7 @@ Refer to the [Quick Start Guide](https://eslint.org/docs/latest/use/getting-star
|
|
|
166
166
|
|
|
167
167
|
### Where to ask for help?
|
|
168
168
|
|
|
169
|
-
Open a [discussion](https://github.com/
|
|
169
|
+
Open a [discussion](https://github.com/bahlint/bahlint/discussions) or stop by our [Discord server](https://eslint.org/chat).
|
|
170
170
|
|
|
171
171
|
### Why doesn't ESLint lock dependency versions?
|
|
172
172
|
|
|
@@ -180,35 +180,35 @@ The Twilio blog has a [deeper dive](https://www.twilio.com/blog/lockfiles-nodejs
|
|
|
180
180
|
|
|
181
181
|
## Releases
|
|
182
182
|
|
|
183
|
-
We have scheduled releases every two weeks on Friday or Saturday. You can follow a [release issue](https://github.com/
|
|
183
|
+
We have scheduled releases every two weeks on Friday or Saturday. You can follow a [release issue](https://github.com/bahlint/bahlint/issues?q=is%3Aopen+is%3Aissue+label%3Arelease) for updates about the scheduling of any particular release.
|
|
184
184
|
|
|
185
185
|
## Security Policy
|
|
186
186
|
|
|
187
|
-
|
|
187
|
+
Bahlint takes security seriously. We work hard to ensure that Bahlint is safe for everyone and that security issues are addressed quickly and responsibly. Read the full [security policy](https://github.com/bahlint/.github/blob/master/SECURITY.md).
|
|
188
188
|
|
|
189
189
|
## Semantic Versioning Policy
|
|
190
190
|
|
|
191
|
-
|
|
191
|
+
Bahlint follows [semantic versioning](https://semver.org). However, due to the nature of Bahlint as a code quality tool, it's not always clear when a minor or major version bump occurs. To help clarify this for everyone, we've defined the following semantic versioning policy for Bahlint:
|
|
192
192
|
|
|
193
193
|
- Patch release (intended to not break your lint build)
|
|
194
|
-
- A bug fix in a rule that results in
|
|
194
|
+
- A bug fix in a rule that results in Bahlint reporting fewer linting errors.
|
|
195
195
|
- A bug fix to the CLI or core (including formatters).
|
|
196
196
|
- Improvements to documentation.
|
|
197
197
|
- Non-user-facing changes such as refactoring code, adding, deleting, or modifying tests, and increasing test coverage.
|
|
198
198
|
- Re-releasing after a failed release (i.e., publishing a release that doesn't work for anyone).
|
|
199
199
|
- Minor release (might break your lint build)
|
|
200
|
-
- A bug fix in a rule that results in
|
|
200
|
+
- A bug fix in a rule that results in Bahlint reporting more linting errors.
|
|
201
201
|
- A new rule is created.
|
|
202
|
-
- A new option to an existing rule that does not result in
|
|
203
|
-
- A new addition to an existing rule to support a newly-added language feature (within the last 12 months) that will result in
|
|
202
|
+
- A new option to an existing rule that does not result in Bahlint reporting more linting errors by default.
|
|
203
|
+
- A new addition to an existing rule to support a newly-added language feature (within the last 12 months) that will result in Bahlint reporting more linting errors by default.
|
|
204
204
|
- An existing rule is deprecated.
|
|
205
205
|
- A new CLI capability is created.
|
|
206
206
|
- New capabilities to the public API are added (new classes, new methods, new arguments to existing methods, etc.).
|
|
207
207
|
- A new formatter is created.
|
|
208
|
-
- `
|
|
208
|
+
- `bahlint:recommended` is updated and will result in strictly fewer linting errors (e.g., rule removals).
|
|
209
209
|
- Major release (likely to break your lint build)
|
|
210
|
-
- `
|
|
211
|
-
- A new option to an existing rule that results in
|
|
210
|
+
- `bahlint:recommended` is updated and may result in new linting errors (e.g., rule additions, most rule option updates).
|
|
211
|
+
- A new option to an existing rule that results in Bahlint reporting more linting errors by default.
|
|
212
212
|
- An existing formatter is removed.
|
|
213
213
|
- Part of the public API is removed or changed in an incompatible way. The public API includes:
|
|
214
214
|
- Rule schemas
|
|
@@ -217,7 +217,7 @@ ESLint follows [semantic versioning](https://semver.org). However, due to the na
|
|
|
217
217
|
- Node.js API
|
|
218
218
|
- Rule, formatter, parser, plugin APIs
|
|
219
219
|
|
|
220
|
-
According to our policy, any minor update may report more linting errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (`~`) in `package.json` e.g. `"
|
|
220
|
+
According to our policy, any minor update may report more linting errors than the previous release (ex: from a bug fix). As such, we recommend using the tilde (`~`) in `package.json` e.g. `"bahlint": "~3.1.0"` to guarantee the results of your builds.
|
|
221
221
|
|
|
222
222
|
## License
|
|
223
223
|
|
|
@@ -253,7 +253,7 @@ These folks keep the project moving and are resources for help.
|
|
|
253
253
|
|
|
254
254
|
### Technical Steering Committee (TSC)
|
|
255
255
|
|
|
256
|
-
The people who manage releases, review feature requests, and meet regularly to ensure
|
|
256
|
+
The people who manage releases, review feature requests, and meet regularly to ensure Bahlint is properly maintained.
|
|
257
257
|
|
|
258
258
|
<table><tbody><tr><td align="center" valign="top" width="11%">
|
|
259
259
|
<a href="https://github.com/nzakas">
|
|
@@ -352,7 +352,7 @@ Percy Ma
|
|
|
352
352
|
|
|
353
353
|
## Sponsors
|
|
354
354
|
|
|
355
|
-
The following companies, organizations, and individuals support
|
|
355
|
+
The following companies, organizations, and individuals support Bahlint's ongoing maintenance and development. [Become a Sponsor](https://eslint.org/donate)
|
|
356
356
|
to get your logo on our READMEs and [website](https://eslint.org/sponsors).
|
|
357
357
|
|
|
358
358
|
<h3>Platinum Sponsors</h3>
|