Skip to content

Commit

Permalink
Fix code style!
Browse files Browse the repository at this point in the history
  • Loading branch information
markuspoerschke authored and markuspoerschke-bot committed Dec 17, 2023
1 parent 2c0ba84 commit 45c00f1
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 76 deletions.
4 changes: 2 additions & 2 deletions dangerfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { message, danger, warn } from "danger";
// Add a CHANGELOG entry for app changes
const hasChangelog = danger.git.modified_files.includes("CHANGELOG.md");
const isTrivial = (danger.github.pr.body + danger.github.pr.title).includes(
"#trivial"
"#trivial",
);
if (!hasChangelog && !isTrivial) {
warn("Please add a changelog entry for your changes.");
Expand All @@ -28,6 +28,6 @@ const hasTestChanges =
.length > 0;
if (hasSrcChanges && !hasTestChanges) {
warn(
"There are code changes, but no tests changed or added. That's okay as long as you're refactoring existing code"
"There are code changes, but no tests changed or added. That's okay as long as you're refactoring existing code",
);
}
140 changes: 70 additions & 70 deletions website/docs/maturity-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,62 +12,62 @@ corresponding property or component.

| Icon | Meaning |
| :--: | ------------------- |
| | supported |
| | not supported |
| (✔) | partially supported |
|| supported |
|| not supported |
| (✔) | partially supported |

## Components

See [RFC 5545 section 3.6](https://tools.ietf.org/html/rfc5545#section-3.6).

| Component | Supported |
| --------- | :-------: |
| VEVENT | |
| VTODO | |
| VJOURNAL | |
| VFREEBUSY | |
| VTIMEZONE | (✔) |
| VALARM | |
| VEVENT ||
| VTODO ||
| VJOURNAL ||
| VFREEBUSY ||
| VTIMEZONE | (✔) |
| VALARM ||

## Event Component

See [RFC 5545 section 3.6.1](https://tools.ietf.org/html/rfc5545#section-3.6.1).

| Property | Supported |
| --------------------------- | :-------: |
| dtstamp | |
| uid | |
| dtstart | |
| class | |
| created | |
| description | |
| geo | |
| last-mod | |
| location | |
| organizer | |
| priority | |
| seq | |
| status | |
| summary | |
| transp | |
| url | |
| recurid | |
| rrule | |
| dtend | |
| duration | |
| attach | |
| attendee | |
| categories | (✔) |
| comment | |
| contact | |
| exdate | |
| rstatus | |
| related | |
| resources | |
| rdate | |
| x-prop | (✔) |
| iana-prop | (✔) |
| x-apple-structured-location | |
| dtstamp ||
| uid ||
| dtstart ||
| class ||
| created ||
| description ||
| geo ||
| last-mod ||
| location ||
| organizer ||
| priority ||
| seq ||
| status ||
| summary ||
| transp ||
| url ||
| recurid ||
| rrule ||
| dtend ||
| duration ||
| attach ||
| attendee ||
| categories | (✔) |
| comment ||
| contact ||
| exdate ||
| rstatus ||
| related ||
| resources ||
| rdate ||
| x-prop | (✔) |
| iana-prop | (✔) |
| x-apple-structured-location ||

## Alarm Component

Expand All @@ -77,25 +77,25 @@ See [RFC 5545 section 3.6.1](https://tools.ietf.org/html/rfc5545#section-3.6.1).

| Property | Supported |
| --------- | :-------: |
| action | |
| trigger | |
| duration | |
| repeat | |
| attach | |
| x-prop | (✔) |
| iana-prop | (✔) |
| action ||
| trigger ||
| duration ||
| repeat ||
| attach ||
| x-prop | (✔) |
| iana-prop | (✔) |

### Display

| Property | Supported |
| ----------- | :-------: |
| action | |
| trigger | |
| description | |
| duration | |
| repeat | |
| x-prop | (✔) |
| iana-prop | (✔) |
| action ||
| trigger ||
| description ||
| duration ||
| repeat ||
| x-prop | (✔) |
| iana-prop | (✔) |

### Email

Expand All @@ -107,22 +107,22 @@ See [RFC 5545 section 3.6.5](https://tools.ietf.org/html/rfc5545#section-3.6.5).

| Property | Supported |
| --------- | :-------: |
| tzid | |
| last-mod | |
| tzurl | |
| x-prop | (✔) |
| iana-prop | (✔) |
| tzid ||
| last-mod ||
| tzurl ||
| x-prop | (✔) |
| iana-prop | (✔) |

### Standard / Daylight sub-component

| Property | Supported |
| ------------ | :-------: |
| dtstart | |
| tzoffsetto | |
| tzoffsetfrom | |
| rrule | |
| comment | |
| rdate | |
| tzname | |
| x-prop | (✔) |
| iana-prop | (✔) |
| dtstart ||
| tzoffsetto ||
| tzoffsetfrom ||
| rrule ||
| comment ||
| rdate ||
| tzname ||
| x-prop | (✔) |
| iana-prop | (✔) |
6 changes: 2 additions & 4 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,11 @@ module.exports = {
items: [
{
label: "Raise a question",
to:
"https://github.com/markuspoerschke/iCal/discussions/categories/q-a",
to: "https://github.com/markuspoerschke/iCal/discussions/categories/q-a",
},
{
label: "Report a bug",
to:
"https://github.com/markuspoerschke/iCal/issues",
to: "https://github.com/markuspoerschke/iCal/issues",
},
],
},
Expand Down

0 comments on commit 45c00f1

Please sign in to comment.