The Wayback Machine - https://web.archive.org/web/20200717025603/https://github.com/topics/eslint
Skip to content
#

ESLint

eslint logo

ESLint is an extensible static-analysis tool for JavaScript and related languages that helps catch errors before they break something in production.

Here are 5,351 public repositories matching this topic...

Zamiell
Zamiell commented Apr 7, 2020
  1. The users of this style guide will probably expect that all of the rules that it prescribes will be enforced by eslint. However, this is not the case - there is a secret, non-documented segmentation where some rules are enforced and others are not, because they would be "too noisy on a legacy codebase". An example of a problematic rule like this is covered in issue #2020. I propose that all of
goldbergyoni
goldbergyoni commented Jan 26, 2020

Given the immense popularity of Docker and the need to harden it different per platform (see ideas below) - we'd like to start writing a Docker best practices section.

You're welcome to contribute ideas and write best practices - writing and brainstorming will people is an amazing way to deepen your Docker understanding.

At first, we want to collect ideas for best practices, solidify a list

iiroj
iiroj commented Dec 16, 2019

The README.md contains a lot of advanced config examples for functional tasks. We should probably add some basic ones as well:

  1. '*.js': ['eslint'] <- fail when eslint finds issues issues
  2. '*.js': ['eslint --fix', 'git add'] <- automatically fix eslint issues, and add to commit
  3. '*.js': ['prettier --list-different'] <- fail when prettier finds issues
  4. `'*.js': ['prettier --write

❄️ A React-Native Android iOS Starter App/ BoilerPlate / Example with Redux, RN Router, & Jest with the Snowflake Hapi Server running locally or on RedHat OpenShift for the backend, or a Parse Server running locally or remotely on Heroku

  • Updated Mar 7, 2019
  • JavaScript
mtjn
mtjn commented Apr 24, 2020
/* example.ts */

// error: Parsing error: Unexpeced token, expected ":"
interface example {
  readonly id: string;
//         ^
}
/* .eslintrc */
{
  "root": true,
  "env": {
    "es6": true,
    "node": true,
    "jest/globals": true
  },
  "parser": "babel-eslint",
  "extends": [
    "eslint:recommended",
    "plugin:prettier/recommended",
    "plug
lsp-mode
yyoncho
yyoncho commented Feb 6, 2020

Vscode handles > in tags by calling html/tag and eventually closing the tag.

Example request:

[Trace - 7:58:44 AM] Sending request 'html/tag - (138)'. Params: { "textDocument": { "uri": "file:///home/kyoncho/Sources/lsp-docker/demo-projects/Scala/hello/src/test/scala/example/foo.html" }, "position": { "line": 0, "character": 6 } }

[Trace - 7:58:44 AM] Received response 'html/tag 

Created by Nicholas C. Zakas

Released June 2013

Latest release 13 days ago

Repository
eslint/eslint
Website
eslint.org

Related Topics

javascript linter linting
You can’t perform that action at this time.