Skip to content

Commit f743aa2

Browse files
committed
Merge tag '2.1.0-alpha.0' into develop
v2.1.0-alpha.0
2 parents e6f6a21 + 9bb2d6e commit f743aa2

File tree

4 files changed

+14
-8
lines changed

4 files changed

+14
-8
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
## [Unreleased]
88

9+
## v2.1.0-alpha.0 - 2024.12.11
10+
911
### Added
1012

1113
- Add support for syntax errors ([#42](https://github.com/studiometa/prettier-formatter-gitlab/issues/42), [#43](https://github.com/studiometa/prettier-formatter-gitlab/pull/43), [08fde17](https://github.com/studiometa/prettier-formatter-gitlab/commit/08fde17))

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
1-
# Prettier formatter for GitLab Code Quality
1+
# @studiometa/prettier-formatter-gitlab
22

3-
[![NPM Version](https://img.shields.io/npm/v/@studiometa/prettier-formatter-gitlab.svg?style=flat-square)](https://www.npmjs.com/package/@studiometa/prettier-formatter-gitlab/)
3+
[![NPM Version](https://img.shields.io/npm/v/@studiometa/prettier-formatter-gitlab.svg?style=flat&colorB=3e63dd&colorA=414853)](https://www.npmjs.com/package/@studiometa/prettier-formatter-gitlab/)
4+
[![Downloads](https://img.shields.io/npm/dm/@studiometa/prettier-formatter-gitlab?style=flat&colorB=3e63dd&colorA=414853)](https://www.npmjs.com/package/@studiometa/prettier-formatter-gitlab/)
5+
[![Size](https://img.shields.io/bundlephobia/minzip/@studiometa/prettier-formatter-gitlab?style=flat&colorB=3e63dd&colorA=414853&label=size)](https://bundlephobia.com/package/@studiometa/prettier-formatter-gitlab)
6+
[![Dependency Status](https://img.shields.io/librariesio/release/npm/@studiometa/prettier-formatter-gitlab?style=flat&colorB=3e63dd&colorA=414853)](https://david-dm.org/studiometa/prettier-formatter-gitlab)
7+
![Codecov](https://img.shields.io/codecov/c/github/studiometa/prettier-formatter-gitlab?style=flat&colorB=3e63dd&colorA=414853)
48

5-
> Send Prettier errors to Gitlab's Code Quality reports.
9+
Send Prettier errors to Gitlab's Code Quality reports.
610

711
## Installation
812

@@ -24,11 +28,11 @@ The report file path will be read from the `PRETTIER_CODE_QUALITY_REPORT` enviro
2428

2529
```yaml
2630
# .gitlab-ci.yml
27-
eslint:
31+
prettier:
2832
image: node:20
2933
script:
3034
- npm ci
31-
- prettier-formatter-gitlab 'prettier -l src/'
35+
- npx prettier-formatter-gitlab 'prettier -l src/'
3236
artifacts:
3337
reports:
3438
codequality: gl-codequality.json

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@studiometa/prettier-formatter-gitlab",
3-
"version": "2.0.0",
3+
"version": "2.1.0-alpha.0",
44
"description": "A Prettier formatter for the GitLab Code Quality report",
55
"main": "src/index.js",
66
"type": "module",

0 commit comments

Comments
 (0)