me-ventures / microservice-toolkit

MIT License
3 stars 1 forks source link

less severe linting rules #18

Closed EvaLok closed 6 years ago

EvaLok commented 6 years ago

turns off a few linting rules which are more hassle than they're worth

variable-name seems unncessary

object-literal-key-quotes causes a linting error when you try to put quotes around a reserved keyword like default

object-literal-shorthand makes stuff like:

const testVar = 123;

const testObj = {
    testVar: testVar
}

not work, and instead prefers

const testVar = 123;

const testObj = {
    testVar
}

which seems unclear