Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@18f/18f-eslint

Package Overview
Dependencies
Maintainers
5
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@18f/18f-eslint

Easy eslint for 18F projects

  • 1.1.0
  • npm
  • Socket score

Version published
Weekly downloads
1
decreased by-94.12%
Maintainers
5
Weekly downloads
 
Created
Source

18F eslint

This app wraps the eslint configuration described in the TTS engineering practices guide, to make it easier to get started. To use, first install:

npm install @18f/eslint

This will install all the appropriate base configurations and plugins. (Since eslint 6, installing these in your local project is recommended, even if you're using a globally-installed eslint or running with npx.)

To run the 18F-configured eslint on your application, you can either use npx, or add it as a script to your package.json. By default, it will lint all files supported by eslint starting at the current directory, but you can also specify paths to lint in the command line arguments:

# Lint all the things
npx @18f/18f-eslint

# Lint some of the things
npx @18f/18f-eslint src

Or in package.json:

{
  ...
  "scripts": {
    "lint": "18f-eslint"
  }
}

Once the script is defined, you can run it with npm run lint.

The command line arguments are passed to the eslint lintFiles method. They can be a combination of file names, directory names, or glob patterns. Note that if you're using globs, they should be wrapped in quotes so that they are not evaluated by the shell.

Configuration

By default, your application will be configured to extend the airbnb and prettier base configurations. It will also enable the es6 environment. If your project uses React, it will also extend the prettier/react configuration and enable the browser environment; otherwise, it will enable the node environment.

All of these configurations can be overridden or extended by your local .eslintrc.* file. The configuration provided by this library is presented to eslint as a base, and your local, project-level configurations will supercede it. By default, it's probably safest not to define an env or extends property in your own config file, but you certainly can if necessary.

Public domain

This project is in the worldwide public domain. As stated in CONTRIBUTING:

This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.

All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.

Keywords

FAQs

Package last updated on 23 Oct 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc