eslint-config-prettier 8.5.0 → 8.7.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.
- package/LICENSE +1 -1
- package/index.js +3 -0
- package/package.json +1 -1
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022 Simon Lydell and contributors
|
|
3
|
+
Copyright (c) 2017, 2018, 2019, 2020, 2021, 2022, 2023 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/index.js
CHANGED
|
@@ -94,11 +94,13 @@ module.exports = {
|
|
|
94
94
|
"yield-star-spacing": "off",
|
|
95
95
|
"@babel/object-curly-spacing": "off",
|
|
96
96
|
"@babel/semi": "off",
|
|
97
|
+
"@typescript-eslint/block-spacing": "off",
|
|
97
98
|
"@typescript-eslint/brace-style": "off",
|
|
98
99
|
"@typescript-eslint/comma-dangle": "off",
|
|
99
100
|
"@typescript-eslint/comma-spacing": "off",
|
|
100
101
|
"@typescript-eslint/func-call-spacing": "off",
|
|
101
102
|
"@typescript-eslint/indent": "off",
|
|
103
|
+
"@typescript-eslint/key-spacing": "off",
|
|
102
104
|
"@typescript-eslint/keyword-spacing": "off",
|
|
103
105
|
"@typescript-eslint/member-delimiter-style": "off",
|
|
104
106
|
"@typescript-eslint/no-extra-parens": "off",
|
|
@@ -163,6 +165,7 @@ module.exports = {
|
|
|
163
165
|
"vue/keyword-spacing": "off",
|
|
164
166
|
"vue/max-attributes-per-line": "off",
|
|
165
167
|
"vue/multiline-html-element-content-newline": "off",
|
|
168
|
+
"vue/multiline-ternary": "off",
|
|
166
169
|
"vue/mustache-interpolation-spacing": "off",
|
|
167
170
|
"vue/no-extra-parens": "off",
|
|
168
171
|
"vue/no-multi-spaces": "off",
|