mirror of
https://github.com/RYDE-WORK/ballistica.git
synced 2026-02-04 14:33:28 +08:00
latest tweaks
This commit is contained in:
parent
eeb3957ad2
commit
c82384b734
1
.gitignore
vendored
1
.gitignore
vendored
@ -20,6 +20,7 @@ local.properties
|
|||||||
.pycheckers
|
.pycheckers
|
||||||
.flycheck-dir-locals.el
|
.flycheck-dir-locals.el
|
||||||
.pylintrc
|
.pylintrc
|
||||||
|
.projectile
|
||||||
.clang-format
|
.clang-format
|
||||||
.style.yapf
|
.style.yapf
|
||||||
.irony
|
.irony
|
||||||
|
|||||||
14
.idea/dictionaries/ericf.xml
generated
14
.idea/dictionaries/ericf.xml
generated
@ -1,13 +1,6 @@
|
|||||||
<component name="ProjectDictionaryState">
|
<component name="ProjectDictionaryState">
|
||||||
<dictionary name="ericf">
|
<dictionary name="ericf">
|
||||||
<words>
|
<words>
|
||||||
<w>spacelen</w>
|
|
||||||
<w>plines</w>
|
|
||||||
<w>formatmakefile</w>
|
|
||||||
<w>nosynctools</w>
|
|
||||||
<w>nosyncdir</w>
|
|
||||||
<w>nosyncdirs</w>
|
|
||||||
<w>pulllist</w>
|
|
||||||
<w>aaaa</w>
|
<w>aaaa</w>
|
||||||
<w>aaab</w>
|
<w>aaab</w>
|
||||||
<w>aaac</w>
|
<w>aaac</w>
|
||||||
@ -536,6 +529,7 @@
|
|||||||
<w>formatcodefull</w>
|
<w>formatcodefull</w>
|
||||||
<w>formatdoc</w>
|
<w>formatdoc</w>
|
||||||
<w>formatfull</w>
|
<w>formatfull</w>
|
||||||
|
<w>formatmakefile</w>
|
||||||
<w>formatscripts</w>
|
<w>formatscripts</w>
|
||||||
<w>formatscriptsfull</w>
|
<w>formatscriptsfull</w>
|
||||||
<w>fout</w>
|
<w>fout</w>
|
||||||
@ -1005,6 +999,9 @@
|
|||||||
<w>norun</w>
|
<w>norun</w>
|
||||||
<w>nospeak</w>
|
<w>nospeak</w>
|
||||||
<w>nosub</w>
|
<w>nosub</w>
|
||||||
|
<w>nosyncdir</w>
|
||||||
|
<w>nosyncdirs</w>
|
||||||
|
<w>nosynctools</w>
|
||||||
<w>notdir</w>
|
<w>notdir</w>
|
||||||
<w>npos</w>
|
<w>npos</w>
|
||||||
<w>ntpath</w>
|
<w>ntpath</w>
|
||||||
@ -1096,6 +1093,7 @@
|
|||||||
<w>playsound</w>
|
<w>playsound</w>
|
||||||
<w>playtype</w>
|
<w>playtype</w>
|
||||||
<w>playtypes</w>
|
<w>playtypes</w>
|
||||||
|
<w>plines</w>
|
||||||
<w>plistlib</w>
|
<w>plistlib</w>
|
||||||
<w>plpt</w>
|
<w>plpt</w>
|
||||||
<w>plst</w>
|
<w>plst</w>
|
||||||
@ -1173,6 +1171,7 @@
|
|||||||
<w>ptype</w>
|
<w>ptype</w>
|
||||||
<w>pubsync</w>
|
<w>pubsync</w>
|
||||||
<w>pucknode</w>
|
<w>pucknode</w>
|
||||||
|
<w>pulllist</w>
|
||||||
<w>punchdir</w>
|
<w>punchdir</w>
|
||||||
<w>punchiness</w>
|
<w>punchiness</w>
|
||||||
<w>punchmats</w>
|
<w>punchmats</w>
|
||||||
@ -1360,6 +1359,7 @@
|
|||||||
<w>socketserver</w>
|
<w>socketserver</w>
|
||||||
<w>sourceimages</w>
|
<w>sourceimages</w>
|
||||||
<w>sourcelines</w>
|
<w>sourcelines</w>
|
||||||
|
<w>spacelen</w>
|
||||||
<w>spacingstr</w>
|
<w>spacingstr</w>
|
||||||
<w>spammers</w>
|
<w>spammers</w>
|
||||||
<w>spammy</w>
|
<w>spammy</w>
|
||||||
|
|||||||
6
Makefile
6
Makefile
@ -30,7 +30,8 @@ DOCPREFIX = "ballisticacore_"
|
|||||||
# Prerequisites that should be in place before running most any other build;
|
# Prerequisites that should be in place before running most any other build;
|
||||||
# things like tool config files, etc.
|
# things like tool config files, etc.
|
||||||
PREREQS = .dir-locals.el .mypy.ini .pycheckers \
|
PREREQS = .dir-locals.el .mypy.ini .pycheckers \
|
||||||
.pylintrc .style.yapf .clang-format
|
.pylintrc .style.yapf .clang-format \
|
||||||
|
.projectile
|
||||||
|
|
||||||
# List the targets in this Makefile and basic descriptions for them.
|
# List the targets in this Makefile and basic descriptions for them.
|
||||||
list:
|
list:
|
||||||
@ -306,6 +307,9 @@ TOOL_CFG_SRC = tools/efrotools/snippets.py config/config.json
|
|||||||
.pylintrc: config/toolconfigsrc/pylintrc ${TOOL_CFG_SRC}
|
.pylintrc: config/toolconfigsrc/pylintrc ${TOOL_CFG_SRC}
|
||||||
${TOOL_CFG_INST} $< $@
|
${TOOL_CFG_INST} $< $@
|
||||||
|
|
||||||
|
.projectile: config/toolconfigsrc/projectile ${TOOL_CFG_SRC}
|
||||||
|
${TOOL_CFG_INST} $< $@
|
||||||
|
|
||||||
.dir-locals.el: config/toolconfigsrc/dir-locals.el ${TOOL_CFG_SRC}
|
.dir-locals.el: config/toolconfigsrc/dir-locals.el ${TOOL_CFG_SRC}
|
||||||
${TOOL_CFG_INST} $< $@
|
${TOOL_CFG_INST} $< $@
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user