Newer
Older
# ##### BEGIN GPL LICENSE BLOCK #####
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# ##### END GPL LICENSE BLOCK #####
# <pep8 compliant>
# these must be all lower case for comparisons
dict_custom = {
# Added to newer versions of the dictionary,
# we can remove these when the updated word-lists have been applied to aspell-en.
"parallelization",
"parallelized",
"pipelining",
"polygonization",
"rasterize",
"reachability",
"runtime",
"serializable",
"unary",
"variadic",
# Correct spelling, update the dictionary, here:
# https://github.com/en-wl/wordlist
"confusticate", "confusticated",
"decrement",
"decrementing",
"dereference", "dereferenced",
"destructors",
"editability",
"redistributions",
"registerable",
"rendeder",
"reparametization",
"subclass", "subclasses", "subclassing",
"subdirectory",
"unbuffered",
"unclamped",
"uncomment",
"uneditable",
"unparameterized",
"unregister", "unregisters",
# python types
"enum", "enums",
"int", "ints",
"tuple", "tuples",
# python functions
"func",
# Accepted abbreviations/concatenations.
"addon", "addons",
"autocomplete",
"coord", "coords",
"dir",
"keyframe", "keyframing",
"lookup", "lookups",
"multi",
"struct", "structs",
"subdir",
"tooltip",
# general computer terms
"boids",
"booleans",
"codepage",
"decimator",
"diff",
"diffs",
"endian",
"env",
"euler", "eulers",
"foo",
"hashable",
"http",
"keymap",
"lerp",
"metadata",
"opengl",
"preprocessor",
"quantized",
"searchable",
"stdin",
"stdin",
"touchpad", "touchpads",
"trackpad", "trackpads",
"unicode",
"vert", "verts",
"voxel", "voxels",
"wiki",
# specific computer terms/brands
# general computer graphics terms
"barycentric",
"bezier",
"bicubic",
"deinterlace",
"emissive",
"quaternions",
"radiosity",
"reflectance",
"shader",
"shaders",
"specular",
"bmain",
"bmesh",
"bpy",
# Should have apostrophe but ignore for now unless we want to get really picky!
"indices",
"vertices",
}
# incorrect spelling but ignore anyway
dict_ignore = {
"arg", "args",
"bool",
"filepath",
"filepaths",
"pylint",
"quad",
"readonly",
"submodule", "submodules",
"tooltips",
"tri",
"ui",
"unfuzzy",
"utils",
"uv",
"vec",
"smpte",
"svn",
# extensions
"py",
"rst",
# tags
"fixme",
"todo",
# sphinx/rst
"rtype",
# slang
"automagically",
# names
"campbell",
"mikkelsen", "morten",
}