express-api-cli
Version:
Cli tool for generating an express project. Instead of wasting extra time creating your project structure, start building right away
35 lines • 694 B
Plain Text
{
"root": true,
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:prettier/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"no-console": 0,
"no-unused-vars": "error",
"quotes": [
"error",
"single",
{
"allowTemplateLiterals": true
}
],
"semi-style": ["error", "last"],
"max-len": [
"error",
{
"code": 80
}
],
"no-irregular-whitespace": "error",
"no-trailing-spaces": "error",
"no-multi-spaces": "error",
"eqeqeq": ["error", "always"]
},
"env": {
"browser": true,
"node": true
}
}