Skip to content

Commit

Permalink
docs: update repository urls
Browse files Browse the repository at this point in the history
Co-authored-by: Rostislav Simonik <rostislav.simonik@technologystudio.sk>
  • Loading branch information
mightyiam and rostislav-simonik committed Jan 20, 2024
1 parent 372e604 commit 932ffce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
},
"repository": {
"type": "git",
"url": "git+https://github.com/standard/eslint-config-standard-with-typescript.git"
"url": "git+https://github.com/mightyiam/eslint-config-standard-with-typescript.git"
},
"author": "Shahar Or <mightyiampresence@gmail.com> (mightyiam)",
"license": "MIT",
"bugs": {
"url": "https://github.com/standard/eslint-config-standard-with-typescript/issues"
"url": "https://github.com/mightyiam/eslint-config-standard-with-typescript/issues"
},
"homepage": "https://github.com/standard/eslint-config-standard-with-typescript#readme",
"homepage": "https://github.com/mightyiam/eslint-config-standard-with-typescript#readme",
"keywords": [
"JavaScript Standard Style",
"check",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://github.com/standard/eslint-config-standard-with-typescript/actions/workflows/ci.yaml/badge.svg)](https://github.com/standard/eslint-config-standard-with-typescript/actions/workflows/ci.yaml)
[![Build Status](https://github.com/mightyiam/eslint-config-standard-with-typescript/actions/workflows/ci.yaml/badge.svg)](https://github.com/mightyiam/eslint-config-standard-with-typescript/actions/workflows/ci.yaml)
[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)
[![npm](https://img.shields.io/npm/v/eslint-config-standard-with-typescript)](https://www.npmjs.com/package/eslint-config-standard-with-typescript)

Expand Down
8 changes: 4 additions & 4 deletions src/fixture.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/**
* https://github.com/standard/eslint-config-standard-with-typescript/issues/10
* https://github.com/mightyiam/eslint-config-standard-with-typescript/issues/10
*/
export type Bar = null
export type Foo<Bar> = (a: Bar) => Bar

/**
* https://github.com/standard/eslint-config-standard-with-typescript/issues/2
* https://github.com/mightyiam/eslint-config-standard-with-typescript/issues/2
*/
export default class Zoo {
public constructor (private readonly name: string) {}
Expand All @@ -16,7 +16,7 @@ export default class Zoo {
}

/**
* https://github.com/standard/eslint-config-standard-with-typescript/issues/3
* https://github.com/mightyiam/eslint-config-standard-with-typescript/issues/3
*/
export interface Boo { b_oo: null }

Expand All @@ -26,7 +26,7 @@ export interface Boo { b_oo: null }
// console.log(undef)

/**
* https://github.com/standard/eslint-config-standard-with-typescript/issues/110
* https://github.com/mightyiam/eslint-config-standard-with-typescript/issues/110
*/
// Inline callbacks don't need return types:
setTimeout(() => { console.log() }, 1)
Expand Down

0 comments on commit 932ffce

Please sign in to comment.