-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
292f29e
commit 517961f
Showing
1 changed file
with
182 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
// cSpell Settings | ||
// | ||
// You can easily install cSpell with npm: | ||
// npm install cspell --global | ||
// | ||
// To spellcheck the mappings run: | ||
// cspell mappings/**/*.mapping --no-progress | ||
// | ||
{ | ||
// language - current active spelling language | ||
"language": "en", | ||
// list of patterns to be ignored | ||
"ignoreRegExpList": [ | ||
// ignores method parameters like: '(IFFF)', '(DDDDDDFD)' | ||
"/\\(.+\\)/g", | ||
// ignores types like: 'Ljava/lang/String;' | ||
"/L[A-Za-z0-9/_$]+;/g" | ||
], | ||
// words - list of words to be always considered correct | ||
"words": [ | ||
"alloc", | ||
"arbMultitexture", | ||
"attackable", | ||
"authlib", | ||
"BIOMESET", | ||
"blit", | ||
"BLOCKSTATE_PROPERTY", | ||
"bossbar", | ||
"breedable", | ||
"CAERBANNOG_RABBIT", | ||
"CHAINMAIL", | ||
"CHESTPLATE", | ||
"clazz", | ||
"CLOWNFISH", | ||
"collidable", | ||
"concat", | ||
"confiming", | ||
"cooldown", | ||
"craftable", | ||
"CREEBET", | ||
"datafix", | ||
"datafixer", | ||
"DEADBUSH", | ||
"Deadmau5", | ||
"Decryptor", | ||
"deflater", | ||
"deop", | ||
"derelativizeId", | ||
"despawn", | ||
"dont", | ||
"DOWNLEFT", | ||
"dpfail", | ||
"dppass", | ||
"drainable", | ||
"elytra", | ||
"enchantability", | ||
"enchantable", | ||
"Encryptor", | ||
"ENDERCHEST", | ||
"enderdragon", | ||
"enderman", | ||
"endermite", | ||
"EPOLL", | ||
"equipable", | ||
"etho", | ||
"fabricmc", | ||
"flowable", | ||
"FORCEFIELD", | ||
"framebuffer", | ||
"fullscreen", | ||
"gamemode", | ||
"gamerules", | ||
"GLOWSTONE", | ||
"gson", | ||
"heightmap", | ||
"hitbox", | ||
"hitboxes", | ||
"HOLDABLES", | ||
"hotbar", | ||
"hoverable", | ||
"illager", | ||
"infestable", | ||
"ingame", | ||
"ints", | ||
"invisibles", | ||
"itemable", | ||
"itemgroup", | ||
"kbps", | ||
"keybind", | ||
"knockback", | ||
"lerp", | ||
"lfloor", | ||
"lightmap", | ||
"lwjgl", | ||
"minecart", | ||
"minecarts", | ||
"mineshafts", | ||
"mipmap", | ||
"MIPPED", | ||
"mojang", | ||
"mooshroom", | ||
"mtick", | ||
"neighbour", | ||
"neighbours", | ||
"NETHERBRICK", | ||
"NETHERRACK", | ||
"NIGHTVISION", | ||
"NOTEBLOCK", | ||
"npcs", | ||
"occulsion", | ||
"opengl", | ||
"overworld", | ||
"PAEONIA", | ||
"pathed", | ||
"pathfinding", | ||
"pathing", | ||
"PerlinNoise", | ||
"pigman", | ||
"PIGSCENE", | ||
"PODZOL", | ||
"Populator", | ||
"PORKCHOP", | ||
"pottable", | ||
"Prepender", | ||
"println", | ||
"PRISMARINE", | ||
"Programi", | ||
"PUFFERFISH", | ||
"PURPUR", | ||
"pushable", | ||
"randomizer", | ||
"raycast", | ||
"rcon", | ||
"RECORD_MELLOHI", | ||
"RECORD_STAL", | ||
"RECORD_STRAD", | ||
"regen", | ||
"reloadable", | ||
"renderable", | ||
"renderbuffer", | ||
"resourcepack", | ||
"respawn", | ||
"rgba", | ||
"rtmp", | ||
"schoolable", | ||
"sfail", | ||
"Shaderi", | ||
"shulker", | ||
"shulkers", | ||
"singleplayer", | ||
"SLIMEBALL", | ||
"snoopable", | ||
"snopper", | ||
"SOULSAND", | ||
"spawnable", | ||
"stackable", | ||
"strikethrough", | ||
"superflat", | ||
"surfacebuilder", | ||
"SYSOUT", | ||
"TALLGRASS", | ||
"tallocated", | ||
"tcache", | ||
"teleporter", | ||
"teleporting", | ||
"tessellator", | ||
"textarget", | ||
"tezzelator", | ||
"tickable", | ||
"tickables", | ||
"TimeMillis", | ||
"TimeNanos", | ||
"unblockable", | ||
"UNBREAKING", | ||
"UNCRAFTABLE", | ||
"UNPOWERED", | ||
"USERFILTER", | ||
"voxel", | ||
"voxels", | ||
"vsync" | ||
] | ||
} |