Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Exporting .d.ts files in order to address #136
Browse files Browse the repository at this point in the history
Also enforced double quote rules across the board
Removed old team members from CODEOWNERS
Added trailing commas
  • Loading branch information
Andrew Bird committed Mar 15, 2021
1 parent 03c2c91 commit 54cb9cf
Show file tree
Hide file tree
Showing 24 changed files with 83 additions and 8,605 deletions.
1 change: 1 addition & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ module.exports = {
},
rules: {
// note you must disable the base rule as it can report incorrect errors
"quotes": ["error", "double"],
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"no-underscore-dangle": "off",
Expand Down
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Code owners:
* @AndrewBird81 @adongare @jkotanchik-SB @serhii-ilin @mattg @danmee10
* @AndrewBird81 @adongare @jkotanchik-SB @serhii-ilin
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
modulePathIgnorePatterns: ["<rootDir>/dist/"],
collectCoverageFrom: [
"src/**/*.ts",
"!**/node_modules/**"
"!**/node_modules/**",
],
setupFilesAfterEnv: ["jest-extended"]
setupFilesAfterEnv: ["jest-extended"],
};
Loading

0 comments on commit 54cb9cf

Please sign in to comment.