c8a4a91681
As we will eventually move the code to a subproject, start arranging it like a top-level srcdir. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1081
28 lines
507 B
YAML
28 lines
507 B
YAML
rules:
|
|
camelcase:
|
|
- error
|
|
- properties: never
|
|
allow: [^vfunc_, ^on_]
|
|
consistent-return: error
|
|
key-spacing:
|
|
- error
|
|
- mode: minimum
|
|
beforeColon: false
|
|
afterColon: true
|
|
object-curly-spacing:
|
|
- error
|
|
- always
|
|
prefer-arrow-callback: error
|
|
|
|
overrides:
|
|
- files: js/**
|
|
excludedFiles:
|
|
- js/extensionPrefs/**
|
|
- js/portalHelper/*
|
|
globals:
|
|
global: readonly
|
|
_: readonly
|
|
C_: readonly
|
|
N_: readonly
|
|
ngettext: readonly
|