Fix lefthook config.

This commit is contained in:
Brenden Matthews
2023-02-28 22:41:20 -05:00
committed by Brenden Matthews
parent 55947d0182
commit 4d7f74f7fe
2 changed files with 9 additions and 9 deletions

View File

@@ -53,11 +53,11 @@ values:
Substitute N by a digit between 0 and 9, inclusively. When specifying Substitute N by a digit between 0 and 9, inclusively. When specifying
the color value in hex, omit the leading hash (#). the color value in hex, omit the leading hash (#).
- name: console_bar_fill - name: console_bar_fill
desc: "A character to fill the console bars." desc: 'A character to fill the console bars.'
default: "#" default: '#'
- name: console_bar_unfill - name: console_bar_unfill
desc: "A character to unfill the console bars." desc: 'A character to unfill the console bars.'
default: "." default: '.'
- name: console_graph_ticks - name: console_graph_ticks
desc: |- desc: |-
A comma-separated list of strings to use as the bars of a A comma-separated list of strings to use as the bars of a
@@ -175,7 +175,7 @@ values:
- name: hddtemp_host - name: hddtemp_host
desc: |- desc: |-
Hostname to connect to for hddtemp objects. Hostname to connect to for hddtemp objects.
default: "127.0.0.1" default: '127.0.0.1'
- name: hddtemp_port - name: hddtemp_port
desc: Port to use for hddtemp connections. desc: Port to use for hddtemp connections.
default: 7634 default: 7634
@@ -406,7 +406,7 @@ values:
- name: own_window_title - name: own_window_title
desc: |- desc: |-
Manually set the window name. Manually set the window name.
default: "conky (<hostname>)" default: 'conky (<hostname>)'
- name: own_window_transparent - name: own_window_transparent
desc: |- desc: |-
Boolean, set transparency? If ARGB visual is enabled, sets Boolean, set transparency? If ARGB visual is enabled, sets
@@ -462,7 +462,7 @@ values:
- name: stippled_borders - name: stippled_borders
desc: Border stippling (dashing) in pixels. desc: Border stippling (dashing) in pixels.
- name: store_graph_data_explicitly - name: store_graph_data_explicitly
desc: |- desc: |-
Enable storing graph data explicitly by ID. This avoids resets while Enable storing graph data explicitly by ID. This avoids resets while
using conditional colors. This option should be disabled while using using conditional colors. This option should be disabled while using
graphs indirectly e.g. via execpi or lua_parse. Otherwise the graph graphs indirectly e.g. via execpi or lua_parse. Otherwise the graph
@@ -517,7 +517,7 @@ values:
Zero makes Conky run forever. Zero makes Conky run forever.
- name: units_spacer - name: units_spacer
desc: String to place between values and units. desc: String to place between values and units.
default: "" default: ''
- name: update_interval - name: update_interval
desc: Update interval. desc: Update interval.
args: args:

View File

@@ -1,7 +1,7 @@
pre-commit: pre-commit:
parallel: true
commands: commands:
web-linter: web-linter:
parallel: true
run: | run: |
npx eslint --fix {staged_files} \ npx eslint --fix {staged_files} \
&& git add {staged_files} && git add {staged_files}