mirror of
https://github.com/ivuorinen/base-configs.git
synced 2026-01-26 03:03:59 +00:00
feat!: ESLint 9 Fixes (#307)
* chore: update postinstall scripts * chore(lint): eslint automated fixes * feat!: drop standard, sonarjs to work with eslint9 - This config allows arrow functions. BREAKING CHANGES: - Switches to eslint-config-eslint from eslint-config-standard. - Also drops eslint-plugins-sonarjs because it doesn't work well with eslint9, and wants eslint8 and related plugins. - Switches from eslint-plugin-prettier to eslint-config-prettier.
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
'use strict'
|
||||
/* eslint no-console: "off" -- This is a cli app that generates cli output */
|
||||
|
||||
const configurationPaths = require('../lib/configuration-paths')
|
||||
|
||||
@@ -13,7 +13,7 @@ const mdTable = configItems.map(file => {
|
||||
console.log('# Configuration files\n')
|
||||
|
||||
const header = 'Searched configuration files'
|
||||
console.log('| ' + header + ' '.repeat(longestLine - header.length) + ' |')
|
||||
console.log('| ' + '-'.repeat(longestLine) + ' |')
|
||||
console.log(`| ${header}${' '.repeat(longestLine - header.length)} |`)
|
||||
console.log(`| ${'-'.repeat(longestLine)} |`)
|
||||
|
||||
mdTable.forEach(line => console.log(line))
|
||||
|
||||
Reference in New Issue
Block a user