Skip to content

Commit

Permalink
Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Jan 26, 2019
1 parent 3279456 commit 18851f7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 43 deletions.
63 changes: 22 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 14 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^1.1.0",
"ava": "^1.1.0",
"chrome-webstore-upload-cli": "^1.2.0",
"copy-webpack-plugin": "^4.5.1",
Expand Down Expand Up @@ -71,7 +71,19 @@
"import/no-unassigned-import": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-type-alias": "off",
"unicorn/no-abusive-eslint-disable": "off"
"unicorn/no-abusive-eslint-disable": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{
"vars": "all",
"varsIgnorePattern": "^React$",
"args": "after-used",
"ignoreRestSiblings": true,
"argsIgnorePattern": "^_$",
"caughtErrors": "all",
"caughtErrorsIgnorePattern": "^_$"
}
]
},
"globals": [
"browser"
Expand Down

0 comments on commit 18851f7

Please sign in to comment.