eslint-config-codestates

1.0.0 • Public • Published

Enforcing Code States's Style Guide

This is an installable ESLint configuration file that enforces Code States's style guide.

ESLint is a tool for identifying and reporting on patterns found in JavaScript code, with the goal of making code more consistent and avoiding bugs. It's an invaluable tool when working with other engineers.

System Requirements

A working version of Node.js

Installation

Install ESLint globally by running the following command in your terminal:

npm install -g eslint

Install the Code States style guide configuration:

npm install -g codestates/eslint-config-codestates

Enforce the style guide in a project

Create an .eslintrc.js file in the root directory of your repository:

module.exports = {
  extend: 'codestates',
  rules: {
    // Rules here will override the 'codestates' configuration
    // http://eslint.org/docs/rules/
  }
};

Now, you can run ESLint from the command line:

eslint [options] [file|dir|glob]*

For example:

eslint someFile.js someOtherFile.js
eslint client/**

If you don't see any output, your files have passed all the linting rules. In addition to the command line interface, ESLint can be integrated into various build systems like Gulp, Grunt, or a pre-commit hook.

Enforce the style guide in Sublime Text

By downloading and configuring a couple of plugins for Sublime Text, you can receive live feedback about your code's syntax and style, much like spelling errors in a word document. This is a very useful practice to build muscle memory around good style habits.

Install SublimeLinter

The easiest way to download plugins for Sublime Text is through Package Control. With Package Control, you can install SublimeLinter and its ESLint plugin from the Command Palette (cmd + shift + p):

  • Package Control: Install Package -> SublimeLinter
  • Package Control: Install Package -> SublimeLinter-contrib-eslint

Configure SublimeLinter

Without any configuration, SublimeLinter will only enforce rules from a .eslintrc file. If no .eslintrc file exists among the open files, SublimeLinter will fall back to the default behavior the eslint command, and only enforce syntax errors.

You can configure SublimeLinter to enforce the Code States style guide on files/projects without an .eslintrc file.

Navigate to Preferences -> Package Settings -> SublimeLinter -> Settings - User and update the linters section to the following:

"eslint": {
  "@disable": false,
  "args": [
    "--config",
    "codestates"
  ],
  "excludes": []
}

Readme

Keywords

Package Sidebar

Install

npm i eslint-config-codestates

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • codestates_official