-
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.
Merge pull request #2 from gfmio/bugfix/remove-node-type-def-1
Merge bugfix/remove-node-type-def-1 into master
- Loading branch information
Showing
34 changed files
with
6,245 additions
and
8,185 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
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 |
---|---|---|
|
@@ -4,5 +4,6 @@ tests | |
.editorconfig | ||
.gitignore | ||
.npmignore | ||
.prettierrc.toml | ||
package-lock.json | ||
tslint.json |
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,31 @@ | ||
arrowParens = "always" | ||
bracketSpacing = true | ||
insertPragma = false | ||
jsxBracketSameLine = false | ||
printWidth = 80 | ||
proseWrap = "always" | ||
requirePragma = false | ||
semi = true | ||
singleQuote = false | ||
tabWidth = 2 | ||
trailingComma = "all" | ||
|
||
[[overrides]] | ||
files = ["*.ts", "*.js"] | ||
[overrides.options] | ||
printWidth = 80 | ||
|
||
[[overrides]] | ||
files = ["*.tsx", ".jsx"] | ||
[overrides.options] | ||
printWidth = 120 | ||
|
||
[[overrides]] | ||
files = ["*.json", "*.json5"] | ||
[overrides.options] | ||
printWidth = 120 | ||
|
||
[[overrides]] | ||
files = "*.md" | ||
[overrides.options] | ||
# proseWrap = "never" |
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,7 +1,6 @@ | ||
/// <reference types="node" /> | ||
export declare class ExtendableError extends Error { | ||
public name: string; | ||
public message: string; | ||
public stack?: string; | ||
public name: string; | ||
public message: string; | ||
public stack?: string; | ||
} | ||
export default ExtendableError; |
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,7 +1,6 @@ | ||
/// <reference types="node" /> | ||
export declare class ExtendableError extends Error { | ||
public name: string; | ||
public message: string; | ||
public stack?: string; | ||
public name: string; | ||
public message: string; | ||
public stack?: string; | ||
} | ||
export default ExtendableError; |
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.