aboutsummaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorTing Shu Lin <[email protected]>2020-12-25 20:38:21 +0900
committerGitHub <[email protected]>2020-12-25 20:38:21 +0900
commit6112afa2c6ce52dc18aafdd03998a82f24aea622 (patch)
tree8e4e30460fa65109947f2beb3ec7bfe7683484a0 /.eslintrc.js
parentUpdate dependency typescript to v4 (#7) (diff)
downloadholo-schedule-6112afa2c6ce52dc18aafdd03998a82f24aea622.tar.xz
holo-schedule-6112afa2c6ce52dc18aafdd03998a82f24aea622.zip
Major typescript eslint monorepo and eslint rule (#9)
* Update typescript-eslint monorepo to v4 * disable rule "no-undef" Co-authored-by: Renovate Bot <[email protected]>
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 463b2ee..a316015 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -17,5 +17,7 @@ module.exports = {
rules: {
'comma-dangle': ['error', 'always-multiline'],
'space-before-function-paren': ['error', 'never'],
+ // Checked by TypeScript
+ 'no-undef': 'off',
},
}