summaryrefslogtreecommitdiff
path: root/lint
diff options
context:
space:
mode:
authorFlorian Müllner <fmuellner@gnome.org>2022-01-18 21:11:36 +0100
committerMarge Bot <marge-bot@gnome.org>2022-01-25 15:21:16 +0000
commit1fe79a331f44457e16b964c542cf6e72a0310211 (patch)
tree68235590542f09007fc78c3af42da32f6ffb758f /lint
parentb001f18440a2823a1ba7440800a891ecb25b15a2 (diff)
downloadgnome-shell-1fe79a331f44457e16b964c542cf6e72a0310211.tar.gz
lint: Partially sync with gjs
As in commit bf5129adc1, leave out putting the Formats module on the verboten list. Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2115>
Diffstat (limited to 'lint')
-rw-r--r--lint/eslintrc-gjs.yml15
1 files changed, 11 insertions, 4 deletions
diff --git a/lint/eslintrc-gjs.yml b/lint/eslintrc-gjs.yml
index ba6c51031..62fd4a2dd 100644
--- a/lint/eslintrc-gjs.yml
+++ b/lint/eslintrc-gjs.yml
@@ -2,8 +2,7 @@
# SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
# SPDX-FileCopyrightText: 2018 Claudio André <claudioandre.br@gmail.com>
env:
- es6: true
- es2020: true
+ es2021: true
extends: 'eslint:recommended'
plugins:
- jsdoc
@@ -86,7 +85,10 @@ rules:
linebreak-style:
- error
- unix
- lines-between-class-members: error
+ lines-between-class-members:
+ - error
+ - always
+ - exceptAfterSingleLine: true
max-nested-callbacks: error
max-statements-per-line: error
new-parens: error
@@ -253,5 +255,10 @@ globals:
window: readonly
TextEncoder: readonly
TextDecoder: readonly
+ console: readonly
+ setTimeout: readonly
+ setInterval: readonly
+ clearTimeout: readonly
+ clearInterval: readonly
parserOptions:
- ecmaVersion: 2020
+ ecmaVersion: 2022