-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
49,279 additions
and
46,914 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,12 +1,24 @@ | ||
MD003: false | ||
# See: https://github.com/DavidAnson/markdownlint | ||
|
||
# Unordered list style | ||
MD004: | ||
style: dash | ||
|
||
# Disable line length for tables | ||
MD013: | ||
tables: false | ||
MD026: false | ||
|
||
# Ordered list item prefix | ||
MD029: | ||
style: one | ||
MD033: false | ||
MD034: false | ||
MD036: false | ||
MD041: false | ||
|
||
# Spaces after list markers | ||
MD030: | ||
ul_single: 1 | ||
ol_single: 1 | ||
ul_multi: 1 | ||
ol_multi: 1 | ||
|
||
# Code block style | ||
MD046: | ||
style: fenced |
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,13 +1,4 @@ | ||
.*.swp | ||
.DS_Store | ||
.bundle/ | ||
.jekyll* | ||
.sass-cache/ | ||
_site/ | ||
node_modules/ | ||
*.min.js | ||
*.min.js.map | ||
*.scss | ||
dist/ | ||
coverage/ | ||
fixtures/ | ||
dist/ | ||
node_modules/ | ||
.DS_Store |
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,3 +1,5 @@ | ||
# See: https://prettier.io/docs/en/configuration | ||
|
||
printWidth: 80 | ||
tabWidth: 2 | ||
useTabs: false | ||
|
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 +1,7 @@ | ||
* @ncalteen | ||
############################################################################ | ||
# Repository CODEOWNERS # | ||
# Order is important! The last matching pattern takes the most precedence. # | ||
############################################################################ | ||
|
||
# Default owners, unless a later match takes precedence. | ||
* @ncalteen |
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,9 +1,10 @@ | ||
import type * as core from '@actions/core' | ||
import { jest } from '@jest/globals' | ||
|
||
export const debug = jest.fn() | ||
export const error = jest.fn() | ||
export const info = jest.fn() | ||
export const getInput = jest.fn() | ||
export const setOutput = jest.fn() | ||
export const setFailed = jest.fn() | ||
export const warning = jest.fn() | ||
export const debug = jest.fn<typeof core.debug>() | ||
export const error = jest.fn<typeof core.error>() | ||
export const info = jest.fn<typeof core.info>() | ||
export const getInput = jest.fn<typeof core.getInput>() | ||
export const setOutput = jest.fn<typeof core.setOutput>() | ||
export const setFailed = jest.fn<typeof core.setFailed>() | ||
export const warning = jest.fn<typeof core.warning>() |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.