-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from jurf/gnome-45-update
feat: Port extension to GNOME 45
- Loading branch information
Showing
4 changed files
with
128 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# SPDX-FileCopyrightText: 2018 Claudio André <[email protected]> | ||
env: | ||
es2021: true | ||
extends: 'eslint:recommended' | ||
extends: "eslint:recommended" | ||
plugins: | ||
- jsdoc | ||
rules: | ||
|
@@ -58,11 +58,11 @@ rules: | |
- error | ||
- 4 | ||
- ignoredNodes: | ||
# Allow not indenting the body of GObject.registerClass, since in the | ||
# future it's intended to be a decorator | ||
- 'CallExpression[callee.object.name=GObject][callee.property.name=registerClass] > ClassExpression:first-child' | ||
# Allow not indenting the body of GObject.registerClass, since in the | ||
# future it's intended to be a decorator | ||
- "CallExpression[callee.object.name=GObject][callee.property.name=registerClass] > ClassExpression:first-child" | ||
# Allow dedenting chained member expressions | ||
MemberExpression: 'off' | ||
MemberExpression: "off" | ||
jsdoc/check-alignment: error | ||
jsdoc/check-param-names: error | ||
jsdoc/check-tag-names: error | ||
|
@@ -115,7 +115,7 @@ rules: | |
no-implicit-coercion: | ||
- error | ||
- allow: | ||
- '!!' | ||
- "!!" | ||
no-invalid-this: error | ||
no-iterator: error | ||
no-label-var: error | ||
|
@@ -126,7 +126,7 @@ rules: | |
no-new-wrappers: error | ||
no-octal-escape: error | ||
no-proto: error | ||
no-prototype-builtins: 'off' | ||
no-prototype-builtins: "off" | ||
no-restricted-globals: [error, window] | ||
no-restricted-properties: | ||
- error | ||
|
@@ -265,3 +265,4 @@ globals: | |
clearInterval: readonly | ||
parserOptions: | ||
ecmaVersion: 2022 | ||
sourceType: module |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
"name": "KMonad Toggle", | ||
"description": "Control KMonad directly from GNOME Shell!\n\nThis extension allows you to:\n • Autostart KMonad on login\n • Quickly check if KMonad is running from the top bar\n • Toggle KMonad on or off with a quick setting\n • Easily configure the KMonad launch command\n\nNote: This extension does not manage the KMonad installation. See the installation guide and FAQ in the KMonad repo for instructions on how to set it up. https://github.com/kmonad/kmonad", | ||
"uuid": "[email protected]", | ||
"shell-version": ["44"], | ||
"shell-version": ["45"], | ||
"settings-schema": "org.gnome.shell.extensions.kmonad-toggle", | ||
"gettext-domain": "kmonad-toggle", | ||
"url": "https://github.com/jurf/gnome-kmonad-toggle", | ||
|
Oops, something went wrong.