-
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #327 from ViorelMocanu/feat/integrate-posthog-and-…
…update feat: add posthog, add static content and update packages
- Loading branch information
Showing
58 changed files
with
6,721 additions
and
8,966 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,3 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
pnpm build | ||
pnpm lint --quiet | ||
pnpm typecheck | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"extends": "stylelint-config-standard-scss", | ||
"rules": { | ||
"color-hex-length": "short", | ||
"property-no-vendor-prefix": [ | ||
true, | ||
{ | ||
"ignoreProperties": ["appearance", "text-size-adjust"] | ||
} | ||
], | ||
"declaration-block-single-line-max-declarations": 20, | ||
"at-rule-empty-line-before": [ | ||
"always", | ||
{ | ||
"except": ["first-nested", "inside-block"], | ||
"ignore": ["after-comment"] | ||
} | ||
], | ||
"comment-empty-line-before": null, | ||
"declaration-empty-line-before": "never", | ||
"rule-empty-line-before": null, | ||
"selector-class-pattern": [ | ||
"^(.*)$", | ||
{ | ||
"message": "Selector should be written in any format (selector-class-pattern)" | ||
} | ||
], | ||
"declaration-block-no-redundant-longhand-properties": null, | ||
"no-descending-specificity": null, | ||
"scss/at-extend-no-missing-placeholder": null, | ||
"scss/double-slash-comment-empty-line-before": null | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.