This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
packwatch/.eslintrc.js

14 lines
383 B
JavaScript
Raw Normal View History

module.exports = {
2020-12-12 20:15:50 +00:00
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint"],
extends: [
"@tophat/eslint-config/base",
"@tophat/eslint-config/jest",
2020-12-12 20:15:50 +00:00
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
2020-12-13 00:02:07 +00:00
],
settings: {
'import/resolver': { node: { extensions: ['.ts'] }}
}
}