get-express-starter
Version:
Get production ready express boilerplate with a single command
35 lines (34 loc) • 715 B
Plain Text
{
"env": {
"node": true,
"jest": true,
"es2020": true
},
"extends": ["airbnb-base", "plugin:security/recommended", "plugin:prettier/recommended"],
"plugins": ["security", "prettier"],
"parserOptions": {
"ecmaVersion": 2020
},
"rules": {
"no-console": "error",
"func-names": "off",
"no-underscore-dangle": "off",
"consistent-return": "off",
"security/detect-object-injection": "off",
"radix": "off",
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
]
},
"settings": {
"import/resolver": {
"node": {
"paths": ["node_modules"],
"extensions": [".js", ".jsx", ".ts", ".tsx"]
}
}
}
}