New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

skoda-scripts

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

skoda-scripts

Handle node projects development tasks with no configuration

latest
Source
npmnpm
Version
0.0.3
Version published
Maintainers
1
Created
Source

skoda-scripts

Handle node projects development tasks with no configuration.

Install

$ yarn add --dev skoda-scripts

NOTE: it includes all the dependencies (prettier, jest, eslint, etc) so you don't have to install them.

Usage

skoda-scripts exposes a series of scripts to handle development tasks.

$ skoda-scripts [script] [options]

Available scripts

init

Adds the available scripts to the project's package.json.

WARNING: it will override anything you have in the properties test, lint and format of the scripts field.

format

Runs prettier on write mode.

lint

Runs ESLint with --cache flag, you can override that with --no-cache.

Since ESLint editor integrations require project based configuration to work a local eslintrc is needed, for that you can use eslint-config-d.

{
  "extends": [
    "skoda"
  ]
}

NOTE: a .eslintignore is required until this eslint issue is resolved.

test

Runs Jest. By default it runs in watch mode unless you are checking coverage (--coverage), used the --no-watch flag or is running in CI (checked by is-ci).

Configuration

skoda-scripts provides an opinionated set of configurations. But all of it can be overridden by adding your own. skoda-scripts will use the configuration files (or package.json property) for each tool if present. The default configuration can be found here.

TODO

  • precommit hook to format and lint code.
  • Run (lint, format) with the provided list of files instead of the default ones.
  • Forward options & flags to the scripts.

Inspiration

skoda-scripts is our take to provide "tools without config". It was strongly inspired by @kentcdodds's version kcd-scripts.

LICENSE

MIT

FAQs

Package last updated on 30 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts