package.configs.eslint.promise.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neeto-commons-frontend Show documentation
Show all versions of neeto-commons-frontend Show documentation
A package encapsulating common code across neeto projects including initializers, utility functions, common components and hooks and so on.
module.exports = {
rules: {
// not-auto-fixable: ensure people use async/await promising chaining rather than using "then-catch-finally" statements
"promise/prefer-await-to-then": "error",
// auto-fixable: avoid calling "new" on a Promise static method like reject, resolve etc
"promise/no-new-statics": "error",
},
};