fix: actually used Prettier in ESLint

This commit is contained in:
Roberto Tonino 2021-04-03 19:43:40 +02:00
parent e3a0a996fe
commit db7e07bd1d
10 changed files with 78 additions and 80 deletions

View File

@ -1,6 +1,7 @@
---
extends:
- "@nuxtjs"
- plugin:prettier/recommended
plugins:
- "@typescript-eslint"
parserOptions:

View File

@ -25,7 +25,7 @@
"@typescript-eslint/eslint-plugin": "4.20.0",
"@typescript-eslint/parser": "4.20.0",
"eslint": "7.23.0",
"eslint-config-prettier": "8.1.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "3.3.1",
"nodemon": "2.0.7",
"prettier": "2.2.1",

View File

@ -5,7 +5,7 @@ import { Port } from '../types'
*
* @since 0.0.0
*/
export function normalizePort (portString:string): Port {
export function normalizePort(portString: string): Port {
const port = parseInt(portString, 10)
if (isNaN(port)) {

View File

@ -6,15 +6,13 @@ import type { Debugger } from 'debug'
*
* @since 0.0.0
*/
export function getErrorCb (port: number | string | boolean) {
export function getErrorCb(port: number | string | boolean) {
return (error: any) => {
if (error.syscall !== 'listen') {
throw error
}
const bind = typeof port === 'string'
? 'Pipe ' + port
: 'Port ' + port
const bind = typeof port === 'string' ? 'Pipe ' + port : 'Port ' + port
// handle specific listen errors with friendly messages
switch (error.code) {
@ -37,14 +35,12 @@ export function getErrorCb (port: number | string | boolean) {
*
* @since 0.0.0
*/
export function getListeningCb (server: http.Server, debug: Debugger) {
export function getListeningCb(server: http.Server, debug: Debugger) {
return () => {
const addr = server.address()
if (addr) {
const bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port
const bind = typeof addr === 'string' ? 'pipe ' + addr : 'port ' + addr.port
debug('Listening on ' + bind)
}
}

View File

@ -4,7 +4,7 @@ import express from 'express'
import cookieParser from 'cookie-parser'
import { WEBUI_DIR } from './helpers/paths'
export function registerMiddlewares (app: Application) {
export function registerMiddlewares(app: Application) {
app.use(logger('dev'))
app.use(express.json())
app.use(express.urlencoded({ extended: false }))

View File

@ -1,11 +1,12 @@
import { Application } from 'express'
import { ApiHandler } from '../../types'
import type { Application } from 'express'
import type { ApiHandler } from '../../types'
import getEndpoints from './get'
import deleteEndpoints from './delete'
import postEndpoints from './post'
import patchEndpoints from './patch'
const prependApiPath = (path:string) => `/api${path}`
const prependApiPath = (path: string) => `/api${path}`
interface Method {
method: string
@ -31,9 +32,9 @@ const methods: Method[] = [
}
]
export function registerApis (app: Application) {
export function registerApis(app: Application) {
methods.forEach(({ method, endpoints }) => {
endpoints.forEach((endpoint) => {
endpoints.forEach(endpoint => {
// @ts-ignore
app[method](prependApiPath(endpoint.path), endpoint.handler)
})

View File

@ -1116,7 +1116,7 @@ escape-string-regexp@^1.0.5:
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
eslint-config-prettier@8.1.0:
eslint-config-prettier@^8.1.0:
version "8.1.0"
resolved "https://registry.yarnpkg.com/eslint-config-prettier/-/eslint-config-prettier-8.1.0.tgz#4ef1eaf97afe5176e6a75ddfb57c335121abc5a6"
integrity sha512-oKMhGv3ihGbCIimCAjqkdzx2Q+jthoqnXSP+d86M9tptwugycmTFdVR4IpLgq2c4SHifbwO90z2fQ8/Aio73yw==