aboutsummaryrefslogtreecommitdiffstats
path: root/.eslintrc.js
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-10-14 13:24:58 +0200
committerLibravatar GitHub <noreply@github.com>2021-10-14 13:24:58 +0200
commitfe1ba2ad6affeb6c0e97c73171d8fa3f31dde73e (patch)
tree10caa332d957421e982c7ddd0c94623d5d62314d /.eslintrc.js
parentchore: convert various JS to TS (#2062) (diff)
downloadferdium-app-fe1ba2ad6affeb6c0e97c73171d8fa3f31dde73e.tar.gz
ferdium-app-fe1ba2ad6affeb6c0e97c73171d8fa3f31dde73e.tar.zst
ferdium-app-fe1ba2ad6affeb6c0e97c73171d8fa3f31dde73e.zip
chore: convert files to TS (#2066)
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index dc727a196..491faff37 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -60,6 +60,10 @@ module.exports = {
60 'object-curly-newline': 0, 60 'object-curly-newline': 0,
61 'operator-linebreak': 0, 61 'operator-linebreak': 0,
62 // @typescript-eslint 62 // @typescript-eslint
63 // TODO: Turn this rule on again after gulp -> webpack migration
64 // gulp-typescript doesn't consider custom index.d.ts in @types
65 // This is necessary as workaround for window.ferdi vs window['ferdi']
66 '@typescript-eslint/dot-notation': 0,
63 '@typescript-eslint/indent': 0, 67 '@typescript-eslint/indent': 0,
64 '@typescript-eslint/no-shadow': 0, 68 '@typescript-eslint/no-shadow': 0,
65 '@typescript-eslint/no-unused-expressions': 0, 69 '@typescript-eslint/no-unused-expressions': 0,