[gnome-shell-extensions/wip/fmuellner/lint-ci: 5/18] lint: Enforce camelCase
- From: Florian Müllner <fmuellner src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell-extensions/wip/fmuellner/lint-ci: 5/18] lint: Enforce camelCase
- Date: Mon, 28 Jan 2019 05:52:43 +0000 (UTC)
commit ff79588d3ba6007939c09b267a482a78cb7bc464
Author: Florian Müllner <fmuellner gnome org>
Date: Mon Jan 28 05:52:24 2019 +0100
lint: Enforce camelCase
All variables should be in camelCase, so configure the corresponding
rule to enforce this. Exempt properties for now, to accommodate the
existing practice of using C-style underscore names for construct
properties of introspected objects.
https://gitlab.gnome.org/GNOME/gnome-shell-extensions/merge_requests/50
lint/eslintrc-shell.json | 7 +++++++
1 file changed, 7 insertions(+)
---
diff --git a/lint/eslintrc-shell.json b/lint/eslintrc-shell.json
index 6064dcb..a041594 100644
--- a/lint/eslintrc-shell.json
+++ b/lint/eslintrc-shell.json
@@ -1,6 +1,13 @@
{
"rules": {
"arrow-spacing": "error",
+ "camelcase": [
+ "error",
+ {
+ "properties": "never",
+ "allow": ["^vfunc_"]
+ }
+ ],
"object-curly-spacing": [
"error",
"always"
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]