The Wayback Machine - https://web.archive.org/web/20200907031017/https://github.com/topics/eslint-config
Skip to content
#

eslint-config

eslint logo

ESLint is an extensible static-analysis tool for JavaScript and related languages that helps catch errors before they break something in production.

Here are 906 public repositories matching this topic...

opensource
tunnckoCore
tunnckoCore commented Feb 9, 2018

Which will behave like that

let settings = await prettyConfig('rollup', { configFiles })

if (!settings) {
  settings = await prettyConfig('rolldown', { configFiles })
}
console.log(settings)

instead of above we can hide it to look like that

const settings = await prettyConfig(['rollup', 'rolldown'], { configFiles })

if (!settings) {
  console.log('no config file

Created by Nicholas C. Zakas

Released June 2013

Latest release 5 days ago

Repository
eslint/eslint
Website
eslint.org

Related Topics

javascript linter linting
You can’t perform that action at this time.