Eslint plugin for AdonisJS applications and packages.
This repo contains the config for eslint used by the core packages of AdonisJS and recommended for AdonisJS applications as well.
You'll first need to install ESLint:
$ npm i eslint --save-devNext, install eslint-plugin-adonis:
$ npm install eslint-plugin-adonis --save-devNote: If you installed ESLint globally (using the
-gflag) then you must also installeslint-plugin-adonisglobally.
Add adonis to the plugins section of your .eslintrc configuration file. You can omit the eslint-plugin- prefix:
adonis/typescriptPackage must be extended when creating packages for AdonisJS.
{
"extends": [
"plugin:adonis/typescriptPackage"
]
}adonis/typescriptApp must be extended when creating AdonisJS application written in Typescript.
{
"extends": [
"plugin:adonis/typescriptApp"
]
}