ESLint is generating a warning on line 7 of the below code for a missing trailing comma. My prettier settings is set to the default of es5. This is creating a conflic. Should I set this to 'all' in prettier settings order to comply with airbnb style guide or is it better to disable this warning in ESLint?
app.use(
session({
secret: 'redacted',
resave: false,
saveUninitialized: false,
store: new MongoStore({ mongooseConnection: mongoose.connection }),
})
);
may i know what is your
.eslintrc.js
settings? did you installeslint-config-prettier
and addextends: ["prettier"]
to disable ESLint rules that will conflict with prettier?