initial commit of actions
This commit is contained in:
commit
949ece5785
44660 changed files with 12034344 additions and 0 deletions
17
github/codeql-action-v2/node_modules/eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js
generated
vendored
Normal file
17
github/codeql-action-v2/node_modules/eslint-plugin-jsx-a11y/__mocks__/LiteralMock.js
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
/**
|
||||
* @flow
|
||||
*/
|
||||
|
||||
export type LiteralMockType = {|
|
||||
type: 'Literal',
|
||||
value: string,
|
||||
raw: string,
|
||||
|};
|
||||
|
||||
export default function LiteralMock(value: string): LiteralMockType {
|
||||
return {
|
||||
type: 'Literal',
|
||||
value,
|
||||
raw: value,
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue