Skip to content

Commit

Permalink
fix: update dependencies (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nebulis authored Apr 28, 2021
1 parent d9e3d9c commit adf7b93
Show file tree
Hide file tree
Showing 8 changed files with 32,716 additions and 9,796 deletions.
36 changes: 20 additions & 16 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -1,28 +1,32 @@
{
"parser": "babel-eslint",
"extends": ["airbnb-base", "plugin:prettier/recommended"],
"extends": ["plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "plugin:jest/recommended"],
"env": {
"jest": true
},
"settings": {
"import/resolver": {
"node": {
"extensions": [".js", ".jsx", ".ts", ".tsx"]
"parser": "@typescript-eslint/parser",
"plugins": ["prettier", "@typescript-eslint"],
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"argsIgnorePattern": "^_"
}
}
],
"func-names": ["error", "as-needed"],
"prettier/prettier": "error",
"import/no-unresolved": "off",
"import/prefer-default-export": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"no-unused-expressions": "off",
"@typescript-eslint/no-unused-expressions": ["error"]
},
"overrides": [
{
"files": ["**/*.ts", "**/*.tsx"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"project": "./tsconfig.json"
},
"plugins": ["@typescript-eslint"],
"files": ["*.json"],
"rules": {
"no-undef": "off",
"no-unused-vars": "off",
"no-restricted-globals": "off"
"@typescript-eslint/no-unused-expressions": ["off"]
}
}
]
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ coverage
dist
node_modules
*.log
*.iml
/.idea
1 change: 1 addition & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// eslint-disable-next-line @typescript-eslint/no-var-requires
const debug = require("debug");

// Jest swallows stderr from debug, so if process is called with DEBUG then redirect debug to console.log
Expand Down
Loading

0 comments on commit adf7b93

Please sign in to comment.