39e6375aff
The Extensions app code is now independent enough from the rest of the code base to move it to its own subprojects, like we did for the extensions-tool. This allows for stand-alone builds of the app, which we are about to use for distributing it as flatpak. https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1133
32 lines
591 B
YAML
32 lines
591 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/portalHelper/*
|
|
globals:
|
|
global: readonly
|
|
_: readonly
|
|
C_: readonly
|
|
N_: readonly
|
|
ngettext: readonly
|
|
- files: subprojects/extensions-app/js/**
|
|
globals:
|
|
_: readonly
|
|
C_: readonly
|
|
N_: readonly
|