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

@glossier/eslint-config

Package Overview
Dependencies
Maintainers
13
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@glossier/eslint-config

How we write JavaScript at Glossier

  • 3.0.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
13
Created
Source

Glossier's JavaScript styleguide

We are following JavaScript Standard Style, with some additional guidelines. We are also extending the react, jest, and jsx-a11y ESLint plugins with the recommended configuration.

Installation

yarn add --dev eslint@^4.19.1 @glossier/eslint-config

Usage

To get started, extend Glossier's configuration in your .eslintrc.

{
  "extends": "@glossier"
}

That's it -- you can now lint your code.

./node_modules/.bin/eslint .

Additional Guidelines

As mentioned above, we are following JavaScript Standard Style, with the following extra rules:

max-len

We define a maximum line length of 100 characters.

// bad
const books = ['JavaScript: The Good Parts', 'Eloquent JavaScript A Modrn Introduction to Programming']

// good
const books = [
  'JavaScript: The Good Parts',
  'Eloquent JavaScript A Modrn Introduction to Programming'
]

prefer-const

Prefer using const over let or var.

// bad
let a = 1

// good
const a = 1

no-var

Prefer using let over var.

// bad
var foo = 'bar'
foo = 'baz'

// good
let foo = 'bar'
foo = 'baz'

License

Copyright 2018 Glossier Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

FAQs

Package last updated on 03 Sep 2019

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