New:Microsoft Teams Notifications Are Now Available in Socket.Learn more
Get Started

@syncrona/eslint-plugin

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncrona/eslint-plugin

SyncroNow AI build plugin that runs ESLint on synced files and blocks pushes on lint errors (uses sync.config.js options or the project's flat ESLint config, eslint.config.js).

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
9
-47.06%
Maintainers
1
Weekly downloads
 
Created
Source

@syncrona/eslint-plugin

npmnodelicenseCITypeScript

Overview

SyncroNow AI is the ServiceNow scoped-application toolchain behind the syncrona CLI. This package is one of its build plugins: register it in the rules array of your sync.config.js and syncrona build runs it over every matching file.

This plugin allows you to run the ESLint checker on files.

Installation

npm i -D @syncrona/eslint-plugin

Order of Configurations

  • Load from sync.config.js options.
  • Fall back to the project's flat ESLint config (eslint.config.js / eslint.config.mjs), which ESLint resolves from the linted file's directory upward.

Example Usage

This example takes .ts files and runs eslint on them. If there are any errors the code is not pushed and the lint report is included in the build error; nothing is printed to stdout, which keeps MCP stdio transports clean.

//sync.config.js
module.exports={
  rules:{
    match:/\.ts$/,
    plugins:[
      name:"@syncrona/eslint-plugin",
    ]
  }
}; 

FAQs

Package last updated on 25 Aug 2026

Related posts