eslint-config-prettier 7.1.0 → 7.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -13,6 +13,7 @@ module.exports = {
13
13
  "@typescript-eslint/member-delimiter-style": "off",
14
14
  "@typescript-eslint/no-extra-parens": "off",
15
15
  "@typescript-eslint/no-extra-semi": "off",
16
+ "@typescript-eslint/object-curly-spacing": "off",
16
17
  "@typescript-eslint/semi": "off",
17
18
  "@typescript-eslint/space-before-function-paren": "off",
18
19
  "@typescript-eslint/space-infix-ops": "off",
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2017, 2018, 2019, 2020 Simon Lydell and contributors
3
+ Copyright (c) 2017, 2018, 2019, 2020, 2021 Simon Lydell and contributors
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-config-prettier",
3
- "version": "7.1.0",
3
+ "version": "7.2.0",
4
4
  "license": "MIT",
5
5
  "author": "Simon Lydell",
6
6
  "description": "Turns off all rules that are unnecessary or might conflict with Prettier.",
package/react.js CHANGED
@@ -14,6 +14,7 @@ module.exports = {
14
14
  "react/jsx-indent": "off",
15
15
  "react/jsx-indent-props": "off",
16
16
  "react/jsx-max-props-per-line": "off",
17
+ "react/jsx-newline": "off",
17
18
  "react/jsx-one-expression-per-line": "off",
18
19
  "react/jsx-props-no-multi-spaces": "off",
19
20
  "react/jsx-tag-spacing": "off",