Reeywhaar / eschecklib

Check javascript code confromance

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ESCHECKLIB

Simple lib to check javascript code conformance to various ecma specifications

Example

const { escheck } = require('eschecklib')

async function () {
  const result = await escheck({ glob: "./build/*.js" })
  if (result.length) {
    const out = []
    for (const err of result) {
      console.error(err.error)
    }
  }
}

About

Check javascript code confromance

License:MIT License


Languages

Language:TypeScript 83.9%Language:JavaScript 16.1%