Skip to content

Commit

Permalink
feat: update deps, cleanup config, support rollup 2
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanPiercey committed Aug 25, 2020
1 parent bf192bc commit 33f0a28
Show file tree
Hide file tree
Showing 25 changed files with 4,325 additions and 4,114 deletions.
14 changes: 9 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,22 +1,26 @@
module.exports = {
root: true,
env: {
node: true
node: true,
},
parserOptions: {
project: ["tsconfig.json"]
project: ["tsconfig.json"],
},
extends: [
"eslint:recommended",
"plugin:jest/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
"prettier/@typescript-eslint"
"prettier/@typescript-eslint",
],
rules: {
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-unsafe-member-access": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-use-before-define": "off"
}
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unsafe-call": "off",
},
};
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ coverage
.nyc_output

# Test
*.actual.*
*.actual.*
2 changes: 1 addition & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ CHANGELOG.md
node_modules
coverage
dist
__snapshots__
__snapshots__
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sudo: false
node_js:
- '10'
- '12'
Expand Down
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = {
preset: "ts-jest",
testEnvironment: "node",
testMatch: ["**/__tests__/*.ts"]
testMatch: ["**/__tests__/*.ts"],
};

0 comments on commit 33f0a28

Please sign in to comment.