diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-03 23:32:33 +0900 |
---|---|---|
committer | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-03 23:52:30 +0900 |
commit | 376151096431d4362e4baaacf0cef4a534e169f7 (patch) | |
tree | 18536a224fd4d833aaf691d0363a3a4b59175dd7 /.eslintrc.json | |
parent | b64f51c3b13a46af4dd7f1e43048ac19c781ca7b (diff) |
Replace JsonSchema with ajv for dictionary validation
Diffstat (limited to '.eslintrc.json')
-rw-r--r-- | .eslintrc.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.eslintrc.json b/.eslintrc.json index 56bbcf09..a7fb842b 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,7 +5,7 @@ "plugin:jsonc/recommended-with-json" ], "parserOptions": { - "ecmaVersion": 9, + "ecmaVersion": 11, "sourceType": "script", "ecmaFeatures": { "globalReturn": false, @@ -401,7 +401,8 @@ "DynamicProperty": "readonly", "EventDispatcher": "readonly", "EventListenerCollection": "readonly", - "Logger": "readonly" + "Logger": "readonly", + "import": "readonly" } }, { |