-
-
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.
- https://gist.github.com/unicornware/1ecc41e7407de9d8c9e90e088cd88d6d Signed-off-by: Lexus Drumgold <[email protected]>
- Loading branch information
1 parent
a0450f9
commit 5bbf830
Showing
33 changed files
with
447 additions
and
403 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,29 @@ | ||
/** | ||
* @file Configuration - commitlint | ||
* @module config/commitlint | ||
* @see https://commitlint.js.org | ||
*/ | ||
|
||
import { | ||
RuleConfigSeverity as Severity, | ||
type UserConfig | ||
} from '@commitlint/types' | ||
import { scopes } from '@flex-development/commitlint-config' | ||
|
||
/** | ||
* `commitlint` configuration object. | ||
* | ||
* @const {UserConfig} config | ||
*/ | ||
const config: UserConfig = { | ||
extends: ['@flex-development'], | ||
rules: { | ||
'scope-enum': [ | ||
Severity.Error, | ||
'always', | ||
scopes(['analyze', 'docs', 'resolve', 'specifiers', 'syntax']) | ||
] | ||
} | ||
} | ||
|
||
export default config |
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
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
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,9 @@ | ||
{ | ||
"*": ["prettier --check", "cspell lint --color --no-progress --relative $@"], | ||
"**/*.{cjs,gql,js,json,jsonc,md,mjs,mts,ts,vue,yml}": [ | ||
"**/*.{cjs,cts,gql,js,json,json5,jsonc,md,mjs,mts,ts,vue,yml}": [ | ||
"eslint --exit-on-fatal-error" | ||
], | ||
"**/*.{cjs,js,mjs,mts,ts,vue}": "vitest typecheck --changed --run", | ||
"**/*.{cts,mts,ts,vue}": "vitest typecheck --changed --run", | ||
"**/yarn.lock": "yarn dedupe --check", | ||
"src/**/*.ts": "vitest --changed --coverage --run" | ||
} |
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 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
/** | ||
* @file Fixtures - aggregate-error-ponyfill | ||
* @module fixtures/aggregate-error-ponyfill | ||
* @see https://github.com/flex-development/aggregate-error-ponyfill/tree/2.0.1 | ||
*/ | ||
|
||
export default 'var y=Object.create;var a=Object.defineProperty;var T=Object.getOwnPropertyDescriptor;var u=Object.getOwnPropertyNames;var A=Object.getPrototypeOf,M=Object.prototype.hasOwnProperty;var b=(r,t,e)=>t in r?a(r,t,{enumerable:!0,configurable:!0,writable:!0,value:e}):r[t]=e;var E=(r,t)=>{for(var e in t)a(r,e,{get:t[e],enumerable:!0})},n=(r,t,e,i)=>{if(t&&typeof t=="object"||typeof t=="function")for(let s of u(t))!M.call(r,s)&&s!==e&&a(r,s,{get:()=>t[s],enumerable:!(i=T(t,s))||i.enumerable});return r};var o=(r,t,e)=>(e=r!=null?y(A(r)):{},n(t||!r||!r.__esModule?a(e,"default",{value:r,enumerable:!0}):e,r)),x=r=>n(a({},"__esModule",{value:!0}),r);var m=(r,t,e)=>(b(r,typeof t!="symbol"?t+"":t,e),e);var v={};E(v,{default:()=>O});module.exports=x(v);var d=o(require("es-abstract/2021/AdvanceStringIndex.js")),h=o(require("es-abstract/2021/CreateDataPropertyOrThrow.js")),f=o(require("es-abstract/2021/GetMethod.js")),I=o(require("es-abstract/2021/IsArray.js")),p=o(require("es-abstract/2021/IterableToList.js")),c=o(require("es-abstract/2021/Type.js")),l=o(require("es-abstract/helpers/getIteratorMethod.js"));class G extends Error{constructor(e,i){super(i);m(this,"errors");m(this,"name","AggregateError");const g=(0,l.default)({AdvanceStringIndex:d.default,GetMethod:f.default,IsArray:I.default,Type:c.default},e);this.errors=(0,p.default)(e,g),(0,h.default)(this,"errors",(0,p.default)(this.errors,g))}}var O=G;' |
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.