diff options
| author | Ting Shu Lin <[email protected]> | 2020-12-25 20:38:21 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-25 20:38:21 +0900 |
| commit | 6112afa2c6ce52dc18aafdd03998a82f24aea622 (patch) | |
| tree | 8e4e30460fa65109947f2beb3ec7bfe7683484a0 /.eslintrc.js | |
| parent | Update dependency typescript to v4 (#7) (diff) | |
| download | holo-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.js | 2 |
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', }, } |