@evaneos/front-config is the main resource for shared js/ts/tsx linting and config across Evaneos apps.
npm install @evaneos/front-config@latest
In your eslint.config.js
file, add:
const evaneosConfig = require("@evaneos/front-config/linting/eslint.config.js")
module.export = [
...evaneosConfig
]
In your tsconfig.json
file, add:
{
"extends": "@evaneos/front-config/config/tsconfig.json"
}
In your .prettierrc
file add:
module.exports = {
...require("@evaneos/front-config/linting/prettier-config.js"),
};