config: ignore literals by regexp and config files

No need to have all of them in the ignore list now.
This commit is contained in:
Laurens Valk
2020-01-16 13:28:09 +01:00
parent 81626bb20d
commit b6f75eca9c
5 changed files with 22 additions and 84 deletions
+7 -1
View File
@@ -7,9 +7,15 @@
"spellright.language": [
"en_US"
],
"spellright.ignoreFiles": [ "**/.gitignore", "**/.vscode" ],
"spellright.ignoreFiles": [
"**/.gitignore",
"**/.vscode",
"**/conf.py",
"**/_version.py",
],
"spellright.ignoreRegExps": [
"/.. math::[^]*?.. endmath/gm",
"/``[^]*?``/gm",
],
"spellright.documentTypes": [
"markdown",
+10 -79
View File
@@ -1,11 +1,14 @@
°C
°F
Ω
accelerometer
Aragonese
autoattribute
autoclass
autofunction
automethod
automodule
baudrate
bool
builtins
cdot
@@ -22,6 +25,7 @@ ev3dev
ev3devices
Ev3devSensor
fb
Franca
func
i2caddress
int
@@ -31,11 +35,14 @@ kd
ki
kp
lbf
Huế
LEGO
LEGO®
linacceleration
linspeed
Lingua
literalinclude
Lojban
Lucida
maxdepth
milliampere
@@ -51,6 +58,7 @@ NXT
nxtdevices
PCM
pid
png
pupdevices
py
Pybricks
@@ -59,89 +67,12 @@ relativedistance
rgb
robotframe
rtype
sep
signaltypes
simplemotor
startinstall
str
thermistor
toctree
TODO
UART
png
af
an
bg
bs
ca
cs
cy
da
de
el
en
en-gb
en-sc
en-uk-north
en-uk-rp
en-uk-wmids
en-us
en-wi
eo
es
es-la
et
fa
fa-pin
fi
fr-be
fr-fr
ga
grc
hi
hr
hu
hy
hy-west
id
is
it
jbo
ka
kn
ku
la
lfn
lt
lv
mk
ml
ms
ne
nl
no
pa
pl
pt-br
pt-pt
ro
ru
sk
sq
sr
sv
sw
ta
tr
vi
vi-hue
vi-sgn
zh
zh-yue
Huế
Lingua
Franca
Lojban
Aragonese
whisperf
+2 -1
View File
@@ -1,4 +1,5 @@
"""Shortened and simplified motor docs, by hiding optional methods and args."""
"""Shortened and simplified motor docs, by hiding optional
methods and arguments."""
from .builtins import Motor
from .parameters import Direction, Stop
+2 -2
View File
@@ -22,7 +22,7 @@ class DriveBase():
"""
def start(self, drive_speed, turn_rate):
"""Start driving at the specified speed and turnrate, both measured at
"""Start driving at the specified speed and turn rate, both measured at
the center point between the wheels of the robot.
Arguments:
@@ -51,7 +51,7 @@ class DriveBase():
pass
def angle(self):
"""Get the estimated accumulated rotation angle of the drivebase.
"""Get the estimated accumulated rotation angle of the drive base.
Returns:
:ref:`angle`: Accumulated angle since last reset.
+1 -1
View File
@@ -1,4 +1,4 @@
"""Common tools for timing and datalogging."""
"""Common tools for timing and data logging."""
def print():