@lbu/lint-config
Advanced tools
Comparing version
{ | ||
"name": "@lbu/lint-config", | ||
"version": "0.0.8", | ||
"version": "0.0.9", | ||
"description": "ESLint & Prettier config", | ||
@@ -21,3 +21,3 @@ "main": "index.js", | ||
"eslint-plugin-prettier": "3.1.2", | ||
"prettier": "1.19.1" | ||
"prettier": "2.0.1" | ||
}, | ||
@@ -38,3 +38,3 @@ "author": { | ||
}, | ||
"gitHead": "85feb582684f93714a7aad81f2a47883e72bd363" | ||
"gitHead": "d847630e049071c7c2385eef8377ba976ddd0e2a" | ||
} |
module.exports = { | ||
printWidth: 80, | ||
tabWidth: 2, | ||
useTabs: false, | ||
semi: true, | ||
singleQuote: false, | ||
quoteProps: "as-needed", | ||
trailingComma: "all", | ||
bracketSpacing: true, | ||
trailingComma: "all", | ||
arrowParens: "avoid", | ||
semi: true, | ||
arrowParens: "always", | ||
proseWrap: "always", | ||
endOfLine: "lf", | ||
}; |
@@ -12,30 +12,13 @@ # @lbu/lint-config | ||
## Versioning and first release | ||
For internal testing we stay on v0.0.x. To reach v0.1.0 the following features | ||
will be supported: | ||
- Flexible code generation (validators, router, queries, openapi) | ||
- Usable documentation | ||
- Test coverage (either e2e or unit, but enough to be considered somewhat | ||
stable) | ||
- Used in a medium size project @ Lightbase | ||
- Implement a [Realworld project](https://github.com/gothinkster/realworld) | ||
## Features | ||
- @lbu/cli: Project template, and simple script runner | ||
- @lbu/code-gen: Flexible code generators. Supports generating router, validator | ||
- @lbu/insight: Opinionated logger | ||
- @lbu/server: Wrap around Koa and some useful middleware | ||
- @lbu/stdlib: Growing library of various common utilities like uuid & a basic | ||
templating system | ||
- Minimal API project boilerplate | ||
- Script runner, can watch & reload almost anything (via nodemon) | ||
- Flexible code generators supporting routers, validators, api clients, mocks | ||
and more in the future. | ||
- Opinionated structured logging | ||
- Common Koa middleware wrapped in a single function | ||
- Various utilities like loading .env files, executing other processes and a | ||
basic template system | ||
## Roadmap | ||
- [ ] @lbu/code-gen: OpenAPI importer | ||
- [ ] @lbu/features: Feature flag implementation based on @lbu/store & support | ||
for code-gen | ||
- [ ] @lbu/code-gen: Postgres query generator | ||
## Docs | ||
@@ -42,0 +25,0 @@ |
32
10.34%3270
-13.12%30
-36.17%+ Added
- Removed
Updated