New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

eslint-config-prettier

Package Overview
Dependencies
Maintainers
0
Versions
78
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

eslint-config-prettier - npm Package Versions

1
35
8

6.8.0

Diff
lydell
published 6.8.0 •

Changelog

Source

Version 6.8.0 (2019-12-25)

  • Added: [@typescript-eslint/no-extra-semi]. Thanks to @xcatliu!
lydell
published 6.7.0 •

Changelog

Source

Version 6.7.0 (2019-11-19)

  • Added: [@typescript-eslint/space-before-function-paren]. Thanks to Masafumi Koba (@ybiquitous)!
lydell
published 6.6.0 •

Changelog

Source

Version 6.6.0 (2019-11-17)

  • Added: New [eslint-plugin-vue] rules: [vue/dot-location] and [vue/keyword-spacing]. Thanks to @xcatliu!
lydell
published 6.5.0 •

Changelog

Source

Version 6.5.0 (2019-10-26)

  • Added: Support for [excluding deprecated rules]. Thanks to Alex Ilyaev (@alexilyaev)!
lydell
published 6.4.0 •

Changelog

Source

Version 6.4.0 (2019-10-05)

  • Added: [unicorn/no-nested-ternary]. Thanks to Yang Mingshan (@yangmingshan)!
lydell
published 6.3.0 •

Changelog

Source

Version 6.3.0 (2019-09-10)

  • Added: [@typescript-eslint/brace-style]. Thanks to Masafumi Koba (@ybiquitous)!
lydell
published 6.2.0 •

Changelog

Source

Version 6.2.0 (2019-09-03)

  • Added: [@typescript-eslint/quotes] (as a [special rule][@typescript-eslint/quotes-special]). Thanks to Masafumi Koba (@ybiquitous)!
lydell
published 6.1.0 •

Changelog

Source

Version 6.1.0 (2019-08-19)

  • Added: [function-call-argument-newline] (new in ESLint 6.2.0). Thanks to Masafumi Koba (@ybiquitous)!
lydell
published 6.0.0 •

Changelog

Source

Version 6.0.0 (2019-06-25)

  • Changed: The CLI helper tool now considers [no-confusing-arrow] to conflict if you use the default value of its allowParens option. The default was changed to true in ESLint 6, which conflicts with Prettier.

    If the CLI helper tool gives you errors about this after upgrading, the solution is to change this:

    {
      "rules": {
        "no-confusing-arrow": ["error"]
      }
    }
    

    Into this:

    {
      "rules": {
        "no-confusing-arrow": ["error", { "allowParens": false }]
      }
    }
    

    The latter works in both ESLint 6 as well as in ESLint 5 and older.

  • Improved: eslint --print-config usage instructions. The CLI tool help text as well as the documentation has been updated to suggest commands that work in ESLint 6.0 as well as in ESLint 5 and older. (Instead of eslint --print-config ., use eslint --print-config path/to/main.js.)

lydell
published 5.1.0 •

Changelog

Source

Version 5.1.0 (2019-06-25)

  • Added: [react/jsx-curly-newline]. Thanks to Masafumi Koba (@ybiquitous)!