0.5.0 • Published 3 years ago

@webfountain/eslint-config-javascript v0.5.0

Weekly downloads
-
License
MIT
Repository
gitlab
Last release
3 years ago

JavaScript Manual of Style

How to use this manual

WIP NOTE: configuration is set for ES2022

Updating Configs

WIP

Conventions

  • use single quotes
  • use semicolons
  • two spaces for indentation
  • no comma dangles

Favor...

  • explicit over implicit
  • developer intention over assumed developer intention

Helpful Resources

NB:

Discussions / Questions

Difference between env.es* & parserOptions.ecmaVersion env indicates that you want to add the es* global variables. parserOptions indicates the syntax you want to allow. -- https://github.com/eslint/eslint/discussions/15166