Skip to content

Commit 3ae0b4d

Browse files
committed
update CONTRIBUTING
1 parent 2232020 commit 3ae0b4d

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

CONTRIBUTING.md

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In addition to the [idiomatic names](https://guide.clojure.style/#idiomatic-name
1616
we use the following conventions
1717

1818
- e - event
19-
- el - element
19+
- el, els - element
2020
- attr, attrs - attribute, attributes
2121
- prop, props - property, properties
2222

@@ -27,16 +27,17 @@ We also use the following namespace aliases
2727
- h - handlers
2828
- s - subs
2929

30-
If the namespace belongs to a different module, we use `module.v`.
30+
If the namespace belongs to a dedicated module, we use `module.v`.
3131

3232
## App structure
3333

3434
Main structure
3535
<pre>
3636
src\
37-
├── renderer\ <--- <a href="https://www.electronjs.org/docs/latest/tutorial/process-model#the-renderer-process">renderer process</a>
38-
├── main.cljs <--- <a href="https://www.electronjs.org/docs/latest/tutorial/process-model#the-main-process">main process</a>
39-
└── preload.cljs <--- <a href="https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts">preload script</a>
37+
├── renderer\ <--- [Renderer Process](https://www.electronjs.org/docs/latest/tutorial/process-model#the-renderer-process</a>
38+
├── electron\ <--- [Main Process](https://www.electronjs.org/docs/latest/tutorial/process-model#the-main-process),[Preload script](https://www.electronjs.org/docs/latest/tutorial/process-model#preload-scripts)
39+
├── lang\ <--- Translation files
40+
└── worker\ <--- [Web Workers](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API)
4041
</pre>
4142

4243
We are trying to split our code under renderer into relatively independent modules,
@@ -59,6 +60,6 @@ module\
5960

6061
```
6162
Ctrl+Shift+I Toggle devtools
62-
Ctrl+Shift+H Toggle 10x
63+
Ctrl+Shift+X Toggle 10x
6364
Ctrl+R Reload app
6465
```

0 commit comments

Comments
 (0)