-
Notifications
You must be signed in to change notification settings - Fork 0
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
8 changed files
with
7,806 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
- package-ecosystem: "npm" | ||
versioning-strategy: "increase" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" |
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,39 @@ | ||
name: "Automerge" | ||
on: | ||
workflow_run: | ||
workflows: | ||
- CI | ||
types: | ||
- completed | ||
|
||
jobs: | ||
Automerge: | ||
runs-on: ubuntu-latest | ||
if: | | ||
github.event.workflow_run.event == 'pull_request' && | ||
github.event.workflow_run.conclusion == 'success' | ||
steps: | ||
- name: 'Merge PR' | ||
uses: actions/github-script@v7 | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
script: | | ||
const pr = await github.rest.pulls.get({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.workflow_run.pull_requests[0].number, | ||
}); | ||
if (!pr.data.title.startsWith('chore(deps-dev):')) { | ||
console.log('Not Merged 🚫'); | ||
console.log(`Title '${pr.data.title}' does not start with 'chore(deps-dev):'`); | ||
} else if (pr.data.user.login !== 'dependabot[bot]') { | ||
console.log('Not Merged 🚫'); | ||
console.log(`User '${pr.data.user.login}' does not equal 'dependabot[bot]'`); | ||
} else { | ||
await github.rest.pulls.merge({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.payload.workflow_run.pull_requests[0].number, | ||
}); | ||
console.log('Merged 🎉'); | ||
} |
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,44 @@ | ||
name: "CI" | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
|
||
Test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '*' | ||
check-latest: true | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Run Tests 👩🏽💻 | ||
run: npm run test | ||
|
||
Release: | ||
needs: [Test] | ||
if: | | ||
github.ref == 'refs/heads/main' && | ||
github.event.repository.fork == false | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Code | ||
uses: actions/checkout@v4 | ||
- name: Install Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 'lts/*' | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Release 🎉 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npx semantic-release |
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 @@ | ||
node_modules |
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,229 @@ | ||
import globals from 'globals'; | ||
import pluginN from 'eslint-plugin-n'; | ||
import tsEslint from 'typescript-eslint'; | ||
import stylistic from '@stylistic/eslint-plugin'; | ||
|
||
export default [ | ||
...tsEslint.configs.recommended, | ||
{ | ||
plugins: { | ||
'@n': pluginN, | ||
'@stylistic': stylistic, | ||
}, | ||
|
||
languageOptions: { | ||
ecmaVersion: 2024, | ||
sourceType: 'module', | ||
|
||
globals: { | ||
...globals.es2024, | ||
...globals.node, | ||
...globals.browser, | ||
document: 'readonly', | ||
navigator: 'readonly', | ||
window: 'readonly', | ||
}, | ||
}, | ||
|
||
rules: { | ||
'accessor-pairs': ['error', { setWithoutGet: true, enforceForClassMembers: true }], | ||
'array-callback-return': ['error', { | ||
allowImplicit: false, | ||
checkForEach: false, | ||
}], | ||
'constructor-super': 'error', | ||
curly: ['error', 'multi-line'], | ||
'default-case-last': 'error', | ||
'dot-notation': ['error', { allowKeywords: true }], | ||
eqeqeq: ['error', 'always', { null: 'ignore' }], | ||
'new-cap': ['error', { newIsCap: true, capIsNew: false, properties: true }], | ||
'no-array-constructor': 'error', | ||
'no-async-promise-executor': 'error', | ||
'no-caller': 'error', | ||
'no-case-declarations': 'error', | ||
'no-class-assign': 'error', | ||
'no-compare-neg-zero': 'error', | ||
'no-const-assign': 'error', | ||
'no-constant-condition': ['error', { checkLoops: false }], | ||
'no-debugger': 'error', | ||
'no-delete-var': 'error', | ||
'no-dupe-args': 'error', | ||
'no-dupe-keys': 'error', | ||
'no-duplicate-case': 'error', | ||
'no-useless-backreference': 'error', | ||
'no-empty': ['error', { allowEmptyCatch: true }], | ||
'no-empty-character-class': 'error', | ||
'no-empty-pattern': 'error', | ||
'no-eval': 'error', | ||
'no-ex-assign': 'error', | ||
'no-extend-native': 'error', | ||
'no-extra-bind': 'error', | ||
'no-extra-boolean-cast': 'error', | ||
'no-fallthrough': 'error', | ||
'no-func-assign': 'error', | ||
'no-global-assign': 'error', | ||
'no-implied-eval': 'error', | ||
'no-import-assign': 'error', | ||
'no-invalid-regexp': 'error', | ||
'no-irregular-whitespace': 'error', | ||
'no-iterator': 'error', | ||
'no-labels': ['error', { allowLoop: false, allowSwitch: false }], | ||
'no-lone-blocks': 'error', | ||
'no-loss-of-precision': 'error', | ||
'no-misleading-character-class': 'error', | ||
'no-prototype-builtins': 'error', | ||
'no-useless-catch': 'error', | ||
'no-multi-str': 'error', | ||
'no-new': 'error', | ||
'no-new-func': 'error', | ||
'no-new-object': 'error', | ||
'no-new-symbol': 'error', | ||
'no-new-wrappers': 'error', | ||
'no-obj-calls': 'error', | ||
'no-octal': 'error', | ||
'no-octal-escape': 'error', | ||
'no-proto': 'error', | ||
'no-regex-spaces': 'error', | ||
'no-return-assign': ['error', 'except-parens'], | ||
'no-self-assign': ['error', { props: true }], | ||
'no-self-compare': 'error', | ||
'no-sequences': 'error', | ||
'no-shadow-restricted-names': 'error', | ||
'no-sparse-arrays': 'error', | ||
'no-template-curly-in-string': 'error', | ||
'no-this-before-super': 'error', | ||
'no-throw-literal': 'error', | ||
'no-undef': 'error', | ||
'no-undef-init': 'error', | ||
'no-unexpected-multiline': 'error', | ||
'no-unmodified-loop-condition': 'error', | ||
'no-unneeded-ternary': ['error', { defaultAssignment: false }], | ||
'no-unreachable': 'error', | ||
'no-unreachable-loop': 'error', | ||
'no-unsafe-finally': 'error', | ||
'no-unsafe-negation': 'error', | ||
'no-unused-expressions': ['error', { | ||
allowShortCircuit: true, | ||
allowTernary: true, | ||
allowTaggedTemplates: true, | ||
}], | ||
'no-unused-vars': ['error', { | ||
args: 'none', | ||
caughtErrors: 'none', | ||
ignoreRestSiblings: true, | ||
vars: 'all', | ||
}], | ||
'no-use-before-define': ['error', { functions: false, classes: false, variables: false }], | ||
'no-useless-call': 'error', | ||
'no-useless-computed-key': 'error', | ||
'no-useless-constructor': 'error', | ||
'no-useless-rename': 'error', | ||
'no-useless-return': 'error', | ||
'no-var': 'error', | ||
'no-void': 'error', | ||
'no-with': 'error', | ||
'object-shorthand': ['warn', 'properties'], | ||
'prefer-const': ['error', { destructuring: 'all' }], | ||
'prefer-promise-reject-errors': 'error', | ||
'prefer-regex-literals': ['error', { disallowRedundantWrapping: true }], | ||
'symbol-description': 'error', | ||
'unicode-bom': ['error', 'never'], | ||
'use-isnan': ['error', { | ||
enforceForSwitchCase: true, | ||
enforceForIndexOf: true, | ||
}], | ||
'valid-typeof': ['error', { requireStringLiterals: true }], | ||
yoda: ['error', 'never'], | ||
|
||
'@stylistic/array-bracket-spacing': ['error', 'never'], | ||
'@stylistic/arrow-spacing': ['error', { before: true, after: true }], | ||
'@stylistic/block-spacing': ['error', 'always'], | ||
'@stylistic/brace-style': ['error', '1tbs', { allowSingleLine: true }], | ||
camelcase: ['error', { | ||
allow: ['^UNSAFE_'], | ||
properties: 'never', | ||
ignoreGlobals: true, | ||
}], | ||
'@stylistic/comma-dangle': ['error', 'always-multiline'], | ||
'@stylistic/comma-spacing': ['error', { before: false, after: true }], | ||
'@stylistic/comma-style': ['error', 'last'], | ||
'@stylistic/computed-property-spacing': ['error', 'never', { enforceForClassMembers: true }], | ||
'@stylistic/dot-location': ['error', 'property'], | ||
'@stylistic/eol-last': 'error', | ||
'@stylistic/func-call-spacing': ['error', 'never'], | ||
'@stylistic/generator-star-spacing': ['error', { before: true, after: true }], | ||
'@stylistic/indent': ['error', 2, { | ||
SwitchCase: 1, | ||
|
||
VariableDeclarator: { | ||
var: 2, | ||
}, | ||
|
||
outerIIFEBody: 0, | ||
}], | ||
'@stylistic/key-spacing': ['error', { beforeColon: false, afterColon: true }], | ||
'@stylistic/keyword-spacing': ['error', { before: true, after: true }], | ||
'@stylistic/lines-between-class-members': ['error', 'always', { exceptAfterSingleLine: true }], | ||
'@stylistic/multiline-ternary': ['error', 'always-multiline'], | ||
'@stylistic/new-parens': 'error', | ||
'@stylistic/no-extra-semi': 'error', | ||
'@stylistic/no-extra-parens': ['error', 'functions'], | ||
'@stylistic/no-floating-decimal': 'error', | ||
'@stylistic/no-mixed-operators': ['error', { | ||
groups: [ | ||
['==', '!=', '===', '!==', '>', '>=', '<', '<='], | ||
['&&', '||'], | ||
['in', 'instanceof'], | ||
], | ||
allowSamePrecedence: true, | ||
}], | ||
'@stylistic/no-mixed-spaces-and-tabs': 'error', | ||
'@stylistic/no-multi-spaces': 'error', | ||
'@stylistic/no-multiple-empty-lines': ['error', { max: 1, maxBOF: 0, maxEOF: 0 }], | ||
'@stylistic/no-tabs': 'error', | ||
'@stylistic/no-trailing-spaces': 'error', | ||
'@stylistic/no-whitespace-before-property': 'error', | ||
'@stylistic/object-curly-newline': ['error', { multiline: true, consistent: true }], | ||
'@stylistic/object-curly-spacing': ['error', 'always'], | ||
'@stylistic/object-property-newline': ['error', { allowMultiplePropertiesPerLine: true }], | ||
'@stylistic/operator-linebreak': ['error', 'before', { | ||
overrides: { | ||
'=': 'after', | ||
}, | ||
}], | ||
'@stylistic/padded-blocks': ['error', { blocks: 'never', switches: 'never', classes: 'never' }], | ||
'@stylistic/quote-props': ['error', 'as-needed'], | ||
'@stylistic/quotes': ['error', 'single', { avoidEscape: true, allowTemplateLiterals: false }], | ||
'@stylistic/rest-spread-spacing': ['error', 'never'], | ||
'@stylistic/semi': ['error', 'always'], | ||
'@stylistic/semi-spacing': ['error', { before: false, after: true }], | ||
'@stylistic/space-before-blocks': ['error', 'always'], | ||
'@stylistic/space-before-function-paren': ['error', 'never'], | ||
'@stylistic/space-in-parens': ['error', 'never'], | ||
'@stylistic/space-infix-ops': 'error', | ||
'@stylistic/space-unary-ops': ['error', { words: true, nonwords: false }], | ||
'@stylistic/spaced-comment': ['error', 'always', { | ||
line: { markers: ['*package', '!', '/', ',', '='] }, | ||
block: { balanced: true, markers: ['*package', '!', ',', ':', '::', 'flow-include'], exceptions: ['*'] }, | ||
}], | ||
'@stylistic/template-curly-spacing': ['error', 'never'], | ||
'@stylistic/template-tag-spacing': ['error', 'never'], | ||
'@stylistic/wrap-iife': ['error', 'any', { functionPrototypeMethods: true }], | ||
'@stylistic/yield-star-spacing': ['error', 'both'], | ||
|
||
'@n/handle-callback-err': ['error', '^(err|error)$'], | ||
'@n/no-callback-literal': 'error', | ||
'@n/no-deprecated-api': 'error', | ||
'@n/no-exports-assign': 'error', | ||
'@n/no-new-require': 'error', | ||
'@n/no-path-concat': 'error', | ||
'@n/process-exit-as-throw': 'error', | ||
|
||
'@typescript-eslint/ban-ts-comment': 'off', | ||
'@typescript-eslint/no-namespace': 'off', | ||
'@typescript-eslint/no-unused-vars': ['error', { | ||
args: 'none', | ||
}], | ||
}, | ||
}, | ||
]; |
Oops, something went wrong.