-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
👌 Add support for envrionment variables on webhooks
- Loading branch information
1 parent
0bb8995
commit caa3443
Showing
19 changed files
with
8,197 additions
and
4,120 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 |
---|---|---|
@@ -1,23 +1,34 @@ | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", // Specifies the ESLint parser | ||
extends: [ | ||
"prettier", | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"prettier/@typescript-eslint", | ||
], | ||
plugins: ["prettier"], | ||
|
||
env: { | ||
browser: true, | ||
jest: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ["*.ts"], | ||
rules: { | ||
camelcase: [2, { properties: "never" }], | ||
module.exports = { | ||
parser: "@typescript-eslint/parser", // Specifies the ESLint parser | ||
extends: [ | ||
"plugin:@typescript-eslint/recommended", | ||
"plugin:prettier/recommended", | ||
"plugin:react/recommended", | ||
"prettier", | ||
"prettier/@typescript-eslint", | ||
"prettier/react", | ||
], | ||
plugins: ["react", "@typescript-eslint", "prettier"], | ||
parserOptions: { | ||
project: "./tsconfig.json", | ||
}, | ||
settings: { | ||
react: { | ||
pragma: "React", | ||
version: "detect", | ||
}, | ||
}, | ||
], | ||
}; | ||
env: { | ||
browser: true, | ||
jasmine: true, | ||
jest: true, | ||
}, | ||
overrides: [ | ||
{ | ||
files: ["*.ts"], | ||
rules: { | ||
camelcase: [2, { properties: "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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.vscode/* | ||
!.vscode/settings.json | ||
!.vscode/tasks.json | ||
!.vscode/launch.json | ||
!.vscode/extensions.json | ||
*.code-workspace | ||
|
||
# Local History for Visual Studio Code | ||
.history/ | ||
|
||
node_modules | ||
lib | ||
dist |
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,10 @@ | ||
module.exports = { | ||
preset: "ts-jest", | ||
testEnvironment: "jest-environment-jsdom-fourteen", | ||
roots: ["<rootDir>/src/"], | ||
globals: { | ||
"ts-jest": { | ||
tsConfig: "tsconfig.json", | ||
}, | ||
}, | ||
}; |
Oops, something went wrong.