An eslint config for RPG Maker MV and RPG Maker MZ used for FeniX and LTN Games' plugins
npm install @fenixengine/eslint-config-rpgmaker
npm install -D eslint eslint-config-rpgmaker
`
Usage
Create an .eslintrc.js file in your project and extend this config:
`
import eslintRpgmaker from '@fenixengine/eslint-rpgmaker-config';
export default [
eslintRpgmaker,
];
`
Included Rules
This config includes rules from:
eslint-plugin-n: Best practices for Node.js
eslint-plugin-import: Helps with managing imports
eslint-plugin-js (recommended): Base ESLint rules
Recommended Extensions
For best results, install the ESLint extension for your editor (e.g., VS Code) and enable auto-fixing on save.
Running ESLint
Run ESLint manually with:
`
npx eslint . --fix
``