eslint-config-prettier
Advanced tools
Comparing version 3.4.0 to 3.5.0
@@ -0,1 +1,11 @@ | ||
### Version 3.5.0 (2019-01-16) | ||
- Fixed: The eslint-plugin-vue change from 3.4.0 has been reverted. That change | ||
requires eslint-plugin-vue@5, while many use eslint-plugin-vue@4. In other | ||
words, it was an accidental breaking change. Also, after thinking about it | ||
some more, it makes sense to have a Prettier-specific list of rules, rather | ||
than using the `vue/no-layout-rules` list, since there can be layout rules | ||
that don’t conflict with but rather complement Prettier. | ||
- Added: New eslint-plugin-vue rules coming in the next version after 5.1.0. | ||
### Version 3.4.0 (2019-01-13) | ||
@@ -2,0 +12,0 @@ |
{ | ||
"name": "eslint-config-prettier", | ||
"version": "3.4.0", | ||
"version": "3.5.0", | ||
"license": "MIT", | ||
@@ -50,4 +50,4 @@ "author": "Simon Lydell", | ||
"eslint-plugin-typescript": "1.0.0-rc.1", | ||
"eslint-plugin-unicorn": "6.0.1", | ||
"eslint-plugin-vue": "5.1.0", | ||
"eslint-plugin-unicorn": "7.0.0", | ||
"eslint-plugin-vue": "github:vuejs/eslint-plugin-vue#9c49dcc8ff792ec6798037bd6b7f4ac3d26fdf68", | ||
"jest": "23.6.0", | ||
@@ -54,0 +54,0 @@ "prettier": "1.15.3", |
@@ -712,3 +712,3 @@ # eslint-config-prettier [![Build Status][travis-badge]][travis] | ||
- eslint-plugin-typescript 1.0.0-rc.1 | ||
- eslint-plugin-unicorn 6.0.1 | ||
- eslint-plugin-unicorn 7.0.0 | ||
- eslint-plugin-vue 5.1.0 | ||
@@ -715,0 +715,0 @@ |
21
vue.js
"use strict"; | ||
module.exports = { | ||
extends: "plugin:vue/no-layout-rules", | ||
rules: { | ||
"vue/html-self-closing": 0 | ||
"vue/html-self-closing": 0, | ||
"vue/array-bracket-spacing": "off", | ||
"vue/html-closing-bracket-newline": "off", | ||
"vue/html-closing-bracket-spacing": "off", | ||
"vue/html-end-tags": "off", | ||
"vue/html-indent": "off", | ||
"vue/html-quotes": "off", | ||
"vue/key-spacing": "off", | ||
"vue/max-attributes-per-line": "off", | ||
"vue/multiline-html-element-content-newline": "off", | ||
"vue/mustache-interpolation-spacing": "off", | ||
"vue/no-multi-spaces": "off", | ||
"vue/no-spaces-around-equal-signs-in-attribute": "off", | ||
"vue/object-curly-spacing": "off", | ||
"vue/script-indent": "off", | ||
"vue/singleline-html-element-content-newline": "off", | ||
"vue/space-infix-ops": "off", | ||
"vue/space-unary-ops": "off" | ||
} | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
45044
395