eslint-plugin-adventure-land
v1.1.2
Published
Adventure Land MMORPG ESLint plugin adding a custom environment containing global game functions, classes, and variables.
Downloads
7
Maintainers
Readme
eslint-plugin-adventure-land
Adventure Land MMORPG ESLint plugin adding a custom environment containing global game functions, classes, and variables. For test stubs and mock data, see the test helpers.
Installation
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-adventure-land:
$ npm install eslint-plugin-adventure-land --save-devNote: If you installed ESLint globally (using the -g flag) then you must also install
eslint-plugin-adventure-land globally.
Usage
- Add
adventure-landto the plugins section of your.eslintrcconfiguration file. (You can omit theeslint-plugin-prefix.) - Add
adventure-land/apito the environments section of your.eslintrcconfiguration file.
{
"plugins": [
"adventure-land"
],
"environments": {
"adventure-land/api": true
}
}Sources
- Official Adventure Land MMORPG source code by Kaan Soral.
- Unofficial Adventure Land MMORPG code documentation by NexusNull.
