arrow-express
Version:
Library to bootstrap express applications with zero configuration
18 lines (17 loc) • 336 B
JavaScript
// eslint-disable-next-line no-undef
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
"indent": ["error", 2],
"semi": ["error"],
"no-explicit-any": 0
}
};