eslint-plugin-prettier 4.2.1 → 5.0.0-alpha.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/README.md +13 -3
- package/eslint-plugin-prettier.d.ts +5 -0
- package/eslint-plugin-prettier.js +57 -132
- package/package.json +35 -26
- package/worker.js +161 -0
- package/CHANGELOG.md +0 -288
package/README.md
CHANGED
|
@@ -97,7 +97,11 @@ Exactly what does `plugin:prettier/recommended` do? Well, this is what it expand
|
|
|
97
97
|
|
|
98
98
|
## `Svelte` support
|
|
99
99
|
|
|
100
|
-
We recommend to use [`eslint-plugin-svelte`](https://github.com/ota-meshi/eslint-plugin-svelte) instead of [`eslint-plugin-svelte3`](https://github.com/sveltejs/eslint-plugin-svelte3) because `eslint-plugin-svelte` has a correct [`eslint-svelte-parser`](https://github.com/ota-meshi/svelte-eslint-parser) instead of hacking
|
|
100
|
+
We recommend to use [`eslint-plugin-svelte`](https://github.com/ota-meshi/eslint-plugin-svelte) instead of [`eslint-plugin-svelte3`](https://github.com/sveltejs/eslint-plugin-svelte3) because `eslint-plugin-svelte` has a correct [`eslint-svelte-parser`](https://github.com/ota-meshi/svelte-eslint-parser) instead of hacking.
|
|
101
|
+
|
|
102
|
+
When use with `eslint-plugin-svelte3`, `eslint-plugin-prettier` will just ignore the text passed by `eslint-plugin-svelte3`, because the text has been modified.
|
|
103
|
+
|
|
104
|
+
If you still decide to use `eslint-plugin-svelte3`, you'll need to run `prettier --write *.svelte` manually.
|
|
101
105
|
|
|
102
106
|
## `arrow-body-style` and `prefer-arrow-callback` issue
|
|
103
107
|
|
|
@@ -119,7 +123,13 @@ If you’re fixing large of amounts of previously unformatted code, consider tem
|
|
|
119
123
|
|
|
120
124
|
```json
|
|
121
125
|
{
|
|
122
|
-
"prettier/prettier": [
|
|
126
|
+
"prettier/prettier": [
|
|
127
|
+
"error",
|
|
128
|
+
{
|
|
129
|
+
"singleQuote": true,
|
|
130
|
+
"parser": "flow"
|
|
131
|
+
}
|
|
132
|
+
]
|
|
123
133
|
}
|
|
124
134
|
```
|
|
125
135
|
|
|
@@ -129,7 +139,7 @@ If you’re fixing large of amounts of previously unformatted code, consider tem
|
|
|
129
139
|
|
|
130
140
|
- An object with the following options
|
|
131
141
|
|
|
132
|
-
- `usePrettierrc`: Enables loading of the Prettier configuration file, (default: `true`). May be useful if you are using multiple tools that conflict with each other, or do not wish to mix your ESLint settings with your Prettier configuration.
|
|
142
|
+
- `usePrettierrc`: Enables loading of the Prettier configuration file, (default: `true`). May be useful if you are using multiple tools that conflict with each other, or do not wish to mix your ESLint settings with your Prettier configuration. And also, it is possible to run prettier without loading the prettierrc config file [via the CLI's --no-config option](https://prettier.io/docs/en/cli.html#--no-config) or through the API by [calling prettier.format() without passing through the options generated by calling resolveConfig](https://prettier.io/docs/en/api.html#prettierresolveconfigfilepath--options).
|
|
133
143
|
|
|
134
144
|
```json
|
|
135
145
|
{
|
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
* @author Andres Suarez
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
|
+
// @ts-check
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @typedef {import('eslint').AST.Range} Range
|
|
10
|
+
* @typedef {import('eslint').AST.SourceLocation} SourceLocation
|
|
11
|
+
* @typedef {import('eslint').ESLint.Plugin} Plugin
|
|
12
|
+
* @typedef {import('prettier').FileInfoOptions} FileInfoOptions
|
|
13
|
+
* @typedef {import('prettier').Options & { onDiskFilepath: string, parserPath: string, usePrettierrc?: boolean }} Options
|
|
14
|
+
*/
|
|
15
|
+
|
|
6
16
|
'use strict';
|
|
7
17
|
|
|
8
18
|
// ------------------------------------------------------------------------------
|
|
@@ -26,9 +36,9 @@ const { INSERT, DELETE, REPLACE } = generateDifferences;
|
|
|
26
36
|
|
|
27
37
|
// Lazily-loaded Prettier.
|
|
28
38
|
/**
|
|
29
|
-
* @type {
|
|
39
|
+
* @type {(source: string, options: Options, fileInfoOptions: FileInfoOptions) => string}
|
|
30
40
|
*/
|
|
31
|
-
let
|
|
41
|
+
let prettierFormat;
|
|
32
42
|
|
|
33
43
|
// ------------------------------------------------------------------------------
|
|
34
44
|
// Rule Definition
|
|
@@ -43,7 +53,7 @@ let prettier;
|
|
|
43
53
|
*/
|
|
44
54
|
function reportDifference(context, difference) {
|
|
45
55
|
const { operation, offset, deleteText = '', insertText = '' } = difference;
|
|
46
|
-
const range = [offset, offset + deleteText.length];
|
|
56
|
+
const range = /** @type {Range} */ ([offset, offset + deleteText.length]);
|
|
47
57
|
const [start, end] = range.map(index =>
|
|
48
58
|
context.getSourceCode().getLocFromIndex(index),
|
|
49
59
|
);
|
|
@@ -63,7 +73,10 @@ function reportDifference(context, difference) {
|
|
|
63
73
|
// Module Definition
|
|
64
74
|
// ------------------------------------------------------------------------------
|
|
65
75
|
|
|
66
|
-
|
|
76
|
+
/**
|
|
77
|
+
* @type {Plugin}
|
|
78
|
+
*/
|
|
79
|
+
const eslintPluginPrettier = {
|
|
67
80
|
configs: {
|
|
68
81
|
recommended: {
|
|
69
82
|
extends: ['prettier'],
|
|
@@ -112,7 +125,10 @@ module.exports = {
|
|
|
112
125
|
create(context) {
|
|
113
126
|
const usePrettierrc =
|
|
114
127
|
!context.options[1] || context.options[1].usePrettierrc !== false;
|
|
115
|
-
|
|
128
|
+
/**
|
|
129
|
+
* @type {FileInfoOptions}
|
|
130
|
+
*/
|
|
131
|
+
const fileInfoOptions =
|
|
116
132
|
(context.options[1] && context.options[1].fileInfoOptions) || {};
|
|
117
133
|
const sourceCode = context.getSourceCode();
|
|
118
134
|
const filepath = context.getFilename();
|
|
@@ -125,134 +141,19 @@ module.exports = {
|
|
|
125
141
|
const source = sourceCode.text;
|
|
126
142
|
|
|
127
143
|
return {
|
|
128
|
-
// eslint-disable-next-line sonarjs/cognitive-complexity
|
|
129
144
|
Program() {
|
|
130
|
-
if (!
|
|
145
|
+
if (!prettierFormat) {
|
|
131
146
|
// Prettier is expensive to load, so only load it if needed.
|
|
132
|
-
|
|
147
|
+
prettierFormat = require('synckit').createSyncFn(
|
|
148
|
+
require.resolve('./worker'),
|
|
149
|
+
);
|
|
133
150
|
}
|
|
134
151
|
|
|
152
|
+
/**
|
|
153
|
+
* @type {{}}
|
|
154
|
+
*/
|
|
135
155
|
const eslintPrettierOptions = context.options[0] || {};
|
|
136
156
|
|
|
137
|
-
const prettierRcOptions = usePrettierrc
|
|
138
|
-
? prettier.resolveConfig.sync(onDiskFilepath, {
|
|
139
|
-
editorconfig: true,
|
|
140
|
-
})
|
|
141
|
-
: null;
|
|
142
|
-
|
|
143
|
-
const { ignored, inferredParser } = prettier.getFileInfo.sync(
|
|
144
|
-
onDiskFilepath,
|
|
145
|
-
{
|
|
146
|
-
resolveConfig: false,
|
|
147
|
-
withNodeModules: false,
|
|
148
|
-
ignorePath: '.prettierignore',
|
|
149
|
-
plugins: prettierRcOptions ? prettierRcOptions.plugins : null,
|
|
150
|
-
...eslintFileInfoOptions,
|
|
151
|
-
},
|
|
152
|
-
);
|
|
153
|
-
|
|
154
|
-
// Skip if file is ignored using a .prettierignore file
|
|
155
|
-
if (ignored) {
|
|
156
|
-
return;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
const initialOptions = {};
|
|
160
|
-
|
|
161
|
-
// ESLint supports processors that let you extract and lint JS
|
|
162
|
-
// fragments within a non-JS language. In the cases where prettier
|
|
163
|
-
// supports the same language as a processor, we want to process
|
|
164
|
-
// the provided source code as javascript (as ESLint provides the
|
|
165
|
-
// rules with fragments of JS) instead of guessing the parser
|
|
166
|
-
// based off the filename. Otherwise, for instance, on a .md file we
|
|
167
|
-
// end up trying to run prettier over a fragment of JS using the
|
|
168
|
-
// markdown parser, which throws an error.
|
|
169
|
-
// Processors may set virtual filenames for these extracted blocks.
|
|
170
|
-
// If they do so then we want to trust the file extension they
|
|
171
|
-
// provide, and no override is needed.
|
|
172
|
-
// If the processor does not set any virtual filename (signified by
|
|
173
|
-
// `filepath` and `onDiskFilepath` being equal) AND we can't
|
|
174
|
-
// infer the parser from the filename, either because no filename
|
|
175
|
-
// was provided or because there is no parser found for the
|
|
176
|
-
// filename, use javascript.
|
|
177
|
-
// This is added to the options first, so that
|
|
178
|
-
// prettierRcOptions and eslintPrettierOptions can still override
|
|
179
|
-
// the parser.
|
|
180
|
-
//
|
|
181
|
-
// `parserBlocklist` should contain the list of prettier parser
|
|
182
|
-
// names for file types where:
|
|
183
|
-
// * Prettier supports parsing the file type
|
|
184
|
-
// * There is an ESLint processor that extracts JavaScript snippets
|
|
185
|
-
// from the file type.
|
|
186
|
-
if (filepath === onDiskFilepath) {
|
|
187
|
-
// The following list means the plugin process source into js content
|
|
188
|
-
// but with same filename, so we need to change the parser to `babel`
|
|
189
|
-
// by default.
|
|
190
|
-
// Related ESLint plugins are:
|
|
191
|
-
// 1. `eslint-plugin-graphql` (replacement: `@graphql-eslint/eslint-plugin`)
|
|
192
|
-
// 2. `eslint-plugin-html`
|
|
193
|
-
// 3. `eslint-plugin-markdown@1` (replacement: `eslint-plugin-markdown@2+`)
|
|
194
|
-
// 4. `eslint-plugin-svelte3` (replacement: `eslint-plugin-svelte@2+`)
|
|
195
|
-
const parserBlocklist = [null, 'markdown', 'html'];
|
|
196
|
-
|
|
197
|
-
let inferParserToBabel = parserBlocklist.includes(inferredParser);
|
|
198
|
-
|
|
199
|
-
switch (inferredParser) {
|
|
200
|
-
// it could be processed by `@graphql-eslint/eslint-plugin` or `eslint-plugin-graphql`
|
|
201
|
-
case 'graphql': {
|
|
202
|
-
if (
|
|
203
|
-
// for `eslint-plugin-graphql`, see https://github.com/apollographql/eslint-plugin-graphql/blob/master/src/index.js#L416
|
|
204
|
-
source.startsWith('ESLintPluginGraphQLFile`')
|
|
205
|
-
) {
|
|
206
|
-
inferParserToBabel = true;
|
|
207
|
-
}
|
|
208
|
-
break;
|
|
209
|
-
}
|
|
210
|
-
// it could be processed by `@ota-meshi/eslint-plugin-svelte`, `eslint-plugin-svelte` or `eslint-plugin-svelte3`
|
|
211
|
-
case 'svelte': {
|
|
212
|
-
// The `source` would be modified by `eslint-plugin-svelte3`
|
|
213
|
-
if (!context.parserPath.includes('svelte-eslint-parser')) {
|
|
214
|
-
// We do not support `eslint-plugin-svelte3`,
|
|
215
|
-
// the users should run `prettier` on `.svelte` files manually
|
|
216
|
-
return;
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
}
|
|
220
|
-
|
|
221
|
-
if (inferParserToBabel) {
|
|
222
|
-
initialOptions.parser = 'babel';
|
|
223
|
-
}
|
|
224
|
-
} else {
|
|
225
|
-
// Similar to https://github.com/prettier/stylelint-prettier/pull/22
|
|
226
|
-
// In all of the following cases ESLint extracts a part of a file to
|
|
227
|
-
// be formatted and there exists a prettier parser for the whole file.
|
|
228
|
-
// If you're interested in prettier you'll want a fully formatted file so
|
|
229
|
-
// you're about to run prettier over the whole file anyway.
|
|
230
|
-
// Therefore running prettier over just the style section is wasteful, so
|
|
231
|
-
// skip it.
|
|
232
|
-
const parserBlocklist = [
|
|
233
|
-
'babel',
|
|
234
|
-
'babylon',
|
|
235
|
-
'flow',
|
|
236
|
-
'typescript',
|
|
237
|
-
'vue',
|
|
238
|
-
'markdown',
|
|
239
|
-
'html',
|
|
240
|
-
'mdx',
|
|
241
|
-
'angular',
|
|
242
|
-
'svelte',
|
|
243
|
-
];
|
|
244
|
-
if (parserBlocklist.includes(inferredParser)) {
|
|
245
|
-
return;
|
|
246
|
-
}
|
|
247
|
-
}
|
|
248
|
-
|
|
249
|
-
const prettierOptions = {
|
|
250
|
-
...initialOptions,
|
|
251
|
-
...prettierRcOptions,
|
|
252
|
-
...eslintPrettierOptions,
|
|
253
|
-
filepath,
|
|
254
|
-
};
|
|
255
|
-
|
|
256
157
|
// prettier.format() may throw a SyntaxError if it cannot parse the
|
|
257
158
|
// source code it is given. Usually for JS files this isn't a
|
|
258
159
|
// problem as ESLint will report invalid syntax before trying to
|
|
@@ -261,9 +162,22 @@ module.exports = {
|
|
|
261
162
|
// files throw an error if they contain unclosed elements, such as
|
|
262
163
|
// `<template><div></template>. In this case report an error at the
|
|
263
164
|
// point at which parsing failed.
|
|
165
|
+
/**
|
|
166
|
+
* @type {string}
|
|
167
|
+
*/
|
|
264
168
|
let prettierSource;
|
|
265
169
|
try {
|
|
266
|
-
prettierSource =
|
|
170
|
+
prettierSource = prettierFormat(
|
|
171
|
+
source,
|
|
172
|
+
{
|
|
173
|
+
...eslintPrettierOptions,
|
|
174
|
+
filepath,
|
|
175
|
+
onDiskFilepath,
|
|
176
|
+
parserPath: context.parserPath,
|
|
177
|
+
usePrettierrc,
|
|
178
|
+
},
|
|
179
|
+
fileInfoOptions,
|
|
180
|
+
);
|
|
267
181
|
} catch (err) {
|
|
268
182
|
if (!(err instanceof SyntaxError)) {
|
|
269
183
|
throw err;
|
|
@@ -271,19 +185,28 @@ module.exports = {
|
|
|
271
185
|
|
|
272
186
|
let message = 'Parsing error: ' + err.message;
|
|
273
187
|
|
|
188
|
+
const error =
|
|
189
|
+
/** @type {SyntaxError & {codeFrame: string; loc: SourceLocation}} */ (
|
|
190
|
+
err
|
|
191
|
+
);
|
|
192
|
+
|
|
274
193
|
// Prettier's message contains a codeframe style preview of the
|
|
275
194
|
// invalid code and the line/column at which the error occurred.
|
|
276
195
|
// ESLint shows those pieces of information elsewhere already so
|
|
277
196
|
// remove them from the message
|
|
278
|
-
if (
|
|
279
|
-
message = message.replace(`\n${
|
|
197
|
+
if (error.codeFrame) {
|
|
198
|
+
message = message.replace(`\n${error.codeFrame}`, '');
|
|
280
199
|
}
|
|
281
|
-
if (
|
|
200
|
+
if (error.loc) {
|
|
282
201
|
message = message.replace(/ \(\d+:\d+\)$/, '');
|
|
283
202
|
}
|
|
284
203
|
|
|
285
|
-
context.report({ message, loc:
|
|
204
|
+
context.report({ message, loc: error.loc });
|
|
205
|
+
|
|
206
|
+
return;
|
|
207
|
+
}
|
|
286
208
|
|
|
209
|
+
if (prettierSource == null) {
|
|
287
210
|
return;
|
|
288
211
|
}
|
|
289
212
|
|
|
@@ -300,3 +223,5 @@ module.exports = {
|
|
|
300
223
|
},
|
|
301
224
|
},
|
|
302
225
|
};
|
|
226
|
+
|
|
227
|
+
module.exports = eslintPluginPrettier;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-prettier",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "5.0.0-alpha.0",
|
|
4
4
|
"description": "Runs prettier as an eslint rule",
|
|
5
5
|
"repository": "git+https://github.com/prettier/eslint-plugin-prettier.git",
|
|
6
6
|
"homepage": "https://github.com/prettier/eslint-plugin-prettier#readme",
|
|
@@ -8,13 +8,18 @@
|
|
|
8
8
|
"contributors": [
|
|
9
9
|
"JounQin (https://github.com/JounQin) <admin@1stg.me>"
|
|
10
10
|
],
|
|
11
|
+
"funding": "https://opencollective.com/prettier",
|
|
11
12
|
"license": "MIT",
|
|
13
|
+
"packageManager": "yarn@1.22.19",
|
|
12
14
|
"engines": {
|
|
13
|
-
"node": ">=
|
|
15
|
+
"node": "^14.18.0 || >=16.0.0"
|
|
14
16
|
},
|
|
15
17
|
"main": "eslint-plugin-prettier.js",
|
|
18
|
+
"types": "eslint-plugin-prettier.d.ts",
|
|
16
19
|
"files": [
|
|
17
|
-
"eslint-plugin-prettier.
|
|
20
|
+
"eslint-plugin-prettier.d.ts",
|
|
21
|
+
"eslint-plugin-prettier.js",
|
|
22
|
+
"worker.js"
|
|
18
23
|
],
|
|
19
24
|
"keywords": [
|
|
20
25
|
"eslint",
|
|
@@ -25,16 +30,20 @@
|
|
|
25
30
|
"scripts": {
|
|
26
31
|
"format": "yarn prettier '**/*.{js,json,md,yml}' --write && yarn lint --fix",
|
|
27
32
|
"lint": "eslint . --cache -f friendly --max-warnings 10",
|
|
28
|
-
"prepare": "
|
|
33
|
+
"prepare": "simple-git-hooks && yarn-deduplicate --strategy fewer || exit 0",
|
|
29
34
|
"prerelease": "yarn format && yarn test",
|
|
30
35
|
"release": "changeset publish",
|
|
31
36
|
"test": "yarn lint && mocha"
|
|
32
37
|
},
|
|
33
38
|
"peerDependencies": {
|
|
34
|
-
"eslint": ">=
|
|
35
|
-
"
|
|
39
|
+
"@types/eslint": ">=8.0.0",
|
|
40
|
+
"eslint": ">=8.0.0",
|
|
41
|
+
"prettier": ">=3.0.0"
|
|
36
42
|
},
|
|
37
43
|
"peerDependenciesMeta": {
|
|
44
|
+
"@types/eslint": {
|
|
45
|
+
"optional": true
|
|
46
|
+
},
|
|
38
47
|
"eslint-config-prettier": {
|
|
39
48
|
"optional": true
|
|
40
49
|
}
|
|
@@ -43,29 +52,29 @@
|
|
|
43
52
|
"prettier-linter-helpers": "^1.0.0"
|
|
44
53
|
},
|
|
45
54
|
"devDependencies": {
|
|
46
|
-
"@1stg/common-config": "
|
|
47
|
-
"@
|
|
48
|
-
"@changesets/
|
|
49
|
-
"@
|
|
50
|
-
"@
|
|
51
|
-
"@
|
|
52
|
-
"@
|
|
55
|
+
"@1stg/common-config": "^7.1.1",
|
|
56
|
+
"@changesets/changelog-github": "^0.4.6",
|
|
57
|
+
"@changesets/cli": "^2.24.4",
|
|
58
|
+
"@graphql-eslint/eslint-plugin": "^3.10.7",
|
|
59
|
+
"@types/eslint": "^8.4.6",
|
|
60
|
+
"@types/prettier": "^2.7.0",
|
|
61
|
+
"@types/prettier-linter-helpers": "^1.0.1",
|
|
62
|
+
"@typescript-eslint/parser": "^5.36.1",
|
|
53
63
|
"eslint-config-prettier": "^8.5.0",
|
|
54
|
-
"eslint-mdx": "^
|
|
55
|
-
"eslint-plugin-eslint-plugin": "^
|
|
56
|
-
"eslint-plugin-mdx": "^
|
|
64
|
+
"eslint-mdx": "^2.0.2",
|
|
65
|
+
"eslint-plugin-eslint-plugin": "^5.0.6",
|
|
66
|
+
"eslint-plugin-mdx": "^2.0.2",
|
|
57
67
|
"eslint-plugin-self": "^1.2.1",
|
|
58
|
-
"eslint-plugin-
|
|
59
|
-
"
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
"svelte": "^3.
|
|
63
|
-
"vue-eslint-parser": "^
|
|
68
|
+
"eslint-plugin-svelte": "^2.7.0",
|
|
69
|
+
"eslint-plugin-svelte3": "^4.0.0",
|
|
70
|
+
"graphql": "^16.6.0",
|
|
71
|
+
"mocha": "^10.0.0",
|
|
72
|
+
"svelte": "^3.49.0",
|
|
73
|
+
"vue-eslint-parser": "^9.0.3",
|
|
74
|
+
"yarn-deduplicate": "^6.0.0"
|
|
64
75
|
},
|
|
65
76
|
"resolutions": {
|
|
66
|
-
"@babel/traverse": "^7.18.5",
|
|
67
77
|
"eslint-plugin-prettier": "link:.",
|
|
68
|
-
"prettier": "^
|
|
69
|
-
}
|
|
70
|
-
"packageManager": "yarn@1.22.19"
|
|
78
|
+
"prettier": "^3.0.0-alpha.0"
|
|
79
|
+
}
|
|
71
80
|
}
|
package/worker.js
ADDED
|
@@ -0,0 +1,161 @@
|
|
|
1
|
+
// @ts-check
|
|
2
|
+
|
|
3
|
+
/**
|
|
4
|
+
* @typedef {import('prettier').FileInfoOptions} FileInfoOptions
|
|
5
|
+
* @typedef {import('prettier').Options & { onDiskFilepath: string, parserPath: string, usePrettierrc?: boolean }} Options
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
const { runAsWorker } = require('synckit');
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
* @type {typeof import('prettier')}
|
|
12
|
+
*/
|
|
13
|
+
let prettier;
|
|
14
|
+
|
|
15
|
+
runAsWorker(
|
|
16
|
+
/**
|
|
17
|
+
* @param {string} source - The source code to format.
|
|
18
|
+
* @param {Options} options - The prettier options.
|
|
19
|
+
* @param {FileInfoOptions} eslintFileInfoOptions - The file info options.
|
|
20
|
+
* @returns {Promise<string | undefined>} The formatted source code.
|
|
21
|
+
*/
|
|
22
|
+
async (
|
|
23
|
+
source,
|
|
24
|
+
{
|
|
25
|
+
filepath,
|
|
26
|
+
onDiskFilepath,
|
|
27
|
+
parserPath,
|
|
28
|
+
usePrettierrc,
|
|
29
|
+
...eslintPrettierOptions
|
|
30
|
+
},
|
|
31
|
+
eslintFileInfoOptions,
|
|
32
|
+
// eslint-disable-next-line sonarjs/cognitive-complexity
|
|
33
|
+
) => {
|
|
34
|
+
if (!prettier) {
|
|
35
|
+
prettier = await import('prettier');
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
const prettierRcOptions = usePrettierrc
|
|
39
|
+
? await prettier.resolveConfig(onDiskFilepath, {
|
|
40
|
+
editorconfig: true,
|
|
41
|
+
})
|
|
42
|
+
: null;
|
|
43
|
+
|
|
44
|
+
const { ignored, inferredParser } = await prettier.getFileInfo(
|
|
45
|
+
onDiskFilepath,
|
|
46
|
+
{
|
|
47
|
+
resolveConfig: false,
|
|
48
|
+
withNodeModules: false,
|
|
49
|
+
ignorePath: '.prettierignore',
|
|
50
|
+
plugins: /** @type {string[] | undefined} */ (
|
|
51
|
+
prettierRcOptions ? prettierRcOptions.plugins : null
|
|
52
|
+
),
|
|
53
|
+
...eslintFileInfoOptions,
|
|
54
|
+
},
|
|
55
|
+
);
|
|
56
|
+
|
|
57
|
+
// Skip if file is ignored using a .prettierignore file
|
|
58
|
+
if (ignored) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const initialOptions = {};
|
|
63
|
+
|
|
64
|
+
// ESLint supports processors that let you extract and lint JS
|
|
65
|
+
// fragments within a non-JS language. In the cases where prettier
|
|
66
|
+
// supports the same language as a processor, we want to process
|
|
67
|
+
// the provided source code as javascript (as ESLint provides the
|
|
68
|
+
// rules with fragments of JS) instead of guessing the parser
|
|
69
|
+
// based off the filename. Otherwise, for instance, on a .md file we
|
|
70
|
+
// end up trying to run prettier over a fragment of JS using the
|
|
71
|
+
// markdown parser, which throws an error.
|
|
72
|
+
// Processors may set virtual filenames for these extracted blocks.
|
|
73
|
+
// If they do so then we want to trust the file extension they
|
|
74
|
+
// provide, and no override is needed.
|
|
75
|
+
// If the processor does not set any virtual filename (signified by
|
|
76
|
+
// `filepath` and `onDiskFilepath` being equal) AND we can't
|
|
77
|
+
// infer the parser from the filename, either because no filename
|
|
78
|
+
// was provided or because there is no parser found for the
|
|
79
|
+
// filename, use javascript.
|
|
80
|
+
// This is added to the options first, so that
|
|
81
|
+
// prettierRcOptions and eslintPrettierOptions can still override
|
|
82
|
+
// the parser.
|
|
83
|
+
//
|
|
84
|
+
// `parserBlocklist` should contain the list of prettier parser
|
|
85
|
+
// names for file types where:
|
|
86
|
+
// * Prettier supports parsing the file type
|
|
87
|
+
// * There is an ESLint processor that extracts JavaScript snippets
|
|
88
|
+
// from the file type.
|
|
89
|
+
if (filepath === onDiskFilepath) {
|
|
90
|
+
// The following list means the plugin process source into js content
|
|
91
|
+
// but with same filename, so we need to change the parser to `babel`
|
|
92
|
+
// by default.
|
|
93
|
+
// Related ESLint plugins are:
|
|
94
|
+
// 1. `eslint-plugin-graphql` (replacement: `@graphql-eslint/eslint-plugin`)
|
|
95
|
+
// 2. `eslint-plugin-html`
|
|
96
|
+
// 3. `eslint-plugin-markdown@1` (replacement: `eslint-plugin-markdown@2+`)
|
|
97
|
+
// 4. `eslint-plugin-svelte3` (replacement: `eslint-plugin-svelte@2+`)
|
|
98
|
+
const parserBlocklist = [null, 'markdown', 'html'];
|
|
99
|
+
|
|
100
|
+
let inferParserToBabel = parserBlocklist.includes(inferredParser);
|
|
101
|
+
|
|
102
|
+
switch (inferredParser) {
|
|
103
|
+
// it could be processed by `@graphql-eslint/eslint-plugin` or `eslint-plugin-graphql`
|
|
104
|
+
case 'graphql': {
|
|
105
|
+
if (
|
|
106
|
+
// for `eslint-plugin-graphql`, see https://github.com/apollographql/eslint-plugin-graphql/blob/master/src/index.js#L416
|
|
107
|
+
source.startsWith('ESLintPluginGraphQLFile`')
|
|
108
|
+
) {
|
|
109
|
+
inferParserToBabel = true;
|
|
110
|
+
}
|
|
111
|
+
break;
|
|
112
|
+
}
|
|
113
|
+
// it could be processed by `@ota-meshi/eslint-plugin-svelte`, `eslint-plugin-svelte` or `eslint-plugin-svelte3`
|
|
114
|
+
case 'svelte': {
|
|
115
|
+
// The `source` would be modified by `eslint-plugin-svelte3`
|
|
116
|
+
if (!parserPath.includes('svelte-eslint-parser')) {
|
|
117
|
+
// We do not support `eslint-plugin-svelte3`,
|
|
118
|
+
// the users should run `prettier` on `.svelte` files manually
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
|
|
124
|
+
if (inferParserToBabel) {
|
|
125
|
+
initialOptions.parser = 'babel';
|
|
126
|
+
}
|
|
127
|
+
} else {
|
|
128
|
+
// Similar to https://github.com/prettier/stylelint-prettier/pull/22
|
|
129
|
+
// In all of the following cases ESLint extracts a part of a file to
|
|
130
|
+
// be formatted and there exists a prettier parser for the whole file.
|
|
131
|
+
// If you're interested in prettier you'll want a fully formatted file so
|
|
132
|
+
// you're about to run prettier over the whole file anyway.
|
|
133
|
+
// Therefore running prettier over just the style section is wasteful, so
|
|
134
|
+
// skip it.
|
|
135
|
+
const parserBlocklist = [
|
|
136
|
+
'babel',
|
|
137
|
+
'babylon',
|
|
138
|
+
'flow',
|
|
139
|
+
'typescript',
|
|
140
|
+
'vue',
|
|
141
|
+
'markdown',
|
|
142
|
+
'html',
|
|
143
|
+
'mdx',
|
|
144
|
+
'angular',
|
|
145
|
+
'svelte',
|
|
146
|
+
];
|
|
147
|
+
if (parserBlocklist.includes(/** @type {string} */ (inferredParser))) {
|
|
148
|
+
return;
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
const prettierOptions = {
|
|
153
|
+
...initialOptions,
|
|
154
|
+
...prettierRcOptions,
|
|
155
|
+
...eslintPrettierOptions,
|
|
156
|
+
filepath,
|
|
157
|
+
};
|
|
158
|
+
|
|
159
|
+
return prettier.format(source, prettierOptions);
|
|
160
|
+
},
|
|
161
|
+
);
|
package/CHANGELOG.md
DELETED
|
@@ -1,288 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
## 4.2.1
|
|
4
|
-
|
|
5
|
-
### Patch Changes
|
|
6
|
-
|
|
7
|
-
- [#485](https://github.com/prettier/eslint-plugin-prettier/pull/485) [`5736ed5`](https://github.com/prettier/eslint-plugin-prettier/commit/5736ed5224b06507374e21c626e8c462552cacf2) Thanks [@JounQin](https://github.com/JounQin)! - chore: reuse prettierRcOptions instead of resolveConfig again
|
|
8
|
-
|
|
9
|
-
## 4.2.0
|
|
10
|
-
|
|
11
|
-
### Minor Changes
|
|
12
|
-
|
|
13
|
-
- [#483](https://github.com/prettier/eslint-plugin-prettier/pull/483) [`7bd70b6`](https://github.com/prettier/eslint-plugin-prettier/commit/7bd70b65b680d360cd55aa9998804fc1e7188331) Thanks [@JounQin](https://github.com/JounQin)! - feat: support svelte out of box
|
|
14
|
-
|
|
15
|
-
close #472, close #482
|
|
16
|
-
|
|
17
|
-
We recommend to use [`eslint-plugin-svelte`](https://github.com/ota-meshi/eslint-plugin-svelte) instead of [`eslint-plugin-svelte3`](https://github.com/sveltejs/eslint-plugin-svelte3).
|
|
18
|
-
|
|
19
|
-
## v4.1.0 (2022-06-27)
|
|
20
|
-
|
|
21
|
-
- feat: skip processing code blocks on specific languages like `stylelint-prettier` ([#415](https://github.com/prettier/eslint-plugin-prettier/issues/415)) ([52eec48](https://github.com/prettier/eslint-plugin-prettier/commit/52eec489cf5ec7a6d97c3edbb7dafc109e9156a4))
|
|
22
|
-
- build(deps): Bump minimist from 1.2.5 to 1.2.6 ([#464](https://github.com/prettier/eslint-plugin-prettier/issues/464)) ([42bfe88](https://github.com/prettier/eslint-plugin-prettier/commit/42bfe88bb748a5d433aeac6d7f17dd8bce3da58c))
|
|
23
|
-
- build(deps-dev): Bump graphql from 15.5.1 to 15.7.2 ([#442](https://github.com/prettier/eslint-plugin-prettier/issues/442)) ([0158640](https://github.com/prettier/eslint-plugin-prettier/commit/01586408fc27bf34e9f51f2047eecf421774074e))
|
|
24
|
-
- build(deps-dev): Bump @graphql-eslint/eslint-plugin from 2.3.0 to 2.4.0 ([#444](https://github.com/prettier/eslint-plugin-prettier/issues/444)) ([4bcaca2](https://github.com/prettier/eslint-plugin-prettier/commit/4bcaca2ee3632b832ccd9366c8d7333376263199))
|
|
25
|
-
- chore(CI): add tests for ESLint 8 ([#428](https://github.com/prettier/eslint-plugin-prettier/issues/428)) ([f3713be](https://github.com/prettier/eslint-plugin-prettier/commit/f3713befaec34fc35c87b71c68db626e38fe31b5))
|
|
26
|
-
- README.md: HTTP => HTTPS ([#443](https://github.com/prettier/eslint-plugin-prettier/issues/443)) ([44e1478](https://github.com/prettier/eslint-plugin-prettier/commit/44e14784396713e43941be8a1635143c5a0c5f4f))
|
|
27
|
-
|
|
28
|
-
## v4.0.0 (2021-08-30)
|
|
29
|
-
|
|
30
|
-
This breaking change drops support for old versions of ESLint, Prettier and
|
|
31
|
-
Node. You must use at least ESLint v7.28.0, Prettier v2.0.0 and Node v12.0.0.
|
|
32
|
-
Aside from that, usage of this plugin remains identical.
|
|
33
|
-
|
|
34
|
-
- v4 - Drop support for eslint 5/6, prettier 1, node 6/8 ([#429](https://github.com/prettier/eslint-plugin-prettier/issues/429)) ([acb56f3](https://github.com/prettier/eslint-plugin-prettier/commit/acb56f3b2891b2a6998a75a7d4406183d452ba16))
|
|
35
|
-
|
|
36
|
-
## v3.4.1 (2021-08-20)
|
|
37
|
-
|
|
38
|
-
- build(deps): Bump glob-parent from 5.0.0 to 5.1.2 ([#420](https://github.com/prettier/eslint-plugin-prettier/issues/420)) ([b6d075c](https://github.com/prettier/eslint-plugin-prettier/commit/b6d075cf7111468e8af4161c306c7f37f09f220e))
|
|
39
|
-
- build(deps): Bump path-parse from 1.0.6 to 1.0.7 ([#425](https://github.com/prettier/eslint-plugin-prettier/issues/425)) ([24f957e](https://github.com/prettier/eslint-plugin-prettier/commit/24f957ee2a5476bb9cc8e64921b9841fc751391e))
|
|
40
|
-
- feat: support `@graphql-eslint/eslint-plugin` out of box ([#413](https://github.com/prettier/eslint-plugin-prettier/issues/413)) ([ec6fbb1](https://github.com/prettier/eslint-plugin-prettier/commit/ec6fbb159e2454c6e145db55480932dc953cf7c1))
|
|
41
|
-
- chore: add tests for Node 16 ([#410](https://github.com/prettier/eslint-plugin-prettier/issues/410)) ([76bd45e](https://github.com/prettier/eslint-plugin-prettier/commit/76bd45ece6d56eb52f75db6b4a1efdd2efb56392))
|
|
42
|
-
|
|
43
|
-
## v3.4.0 (2021-04-15)
|
|
44
|
-
|
|
45
|
-
- feat: support processor virtual filename ([#401](https://github.com/prettier/eslint-plugin-prettier/issues/401)) ([ee0ccc6](https://github.com/prettier/eslint-plugin-prettier/commit/ee0ccc6ac06d13cd546e78b444e53164f59eb27f))
|
|
46
|
-
- Simplify report logic ([#380](https://github.com/prettier/eslint-plugin-prettier/issues/380)) ([d993f24](https://github.com/prettier/eslint-plugin-prettier/commit/d993f247b5661683af031ab3b93955a0dfe448fa))
|
|
47
|
-
- Update: README.md ([#375](https://github.com/prettier/eslint-plugin-prettier/issues/375)) ([3ea4242](https://github.com/prettier/eslint-plugin-prettier/commit/3ea4242a8d4acdb76eb7e7dca9e44d3e87db70e3))
|
|
48
|
-
|
|
49
|
-
## v3.3.1 (2021-01-04)
|
|
50
|
-
|
|
51
|
-
- fix: add eslint-config-prettier as an optional peer dependency ([#374](https://github.com/prettier/eslint-plugin-prettier/issues/374)) ([d59df27](https://github.com/prettier/eslint-plugin-prettier/commit/d59df27890aaffec9e528ceb3155831a0261848d))
|
|
52
|
-
- build(deps-dev): bump eslint from 7.16.0 to 7.17.0 ([b87985d](https://github.com/prettier/eslint-plugin-prettier/commit/b87985d8b1986743374b56691bcc1633df8f4eae))
|
|
53
|
-
- build(deps-dev): bump eslint from 7.15.0 to 7.16.0 ([11e427e](https://github.com/prettier/eslint-plugin-prettier/commit/11e427e5d6cedeb26e3e03c8143be3496a24955a))
|
|
54
|
-
|
|
55
|
-
## v3.3.0 (2020-12-13)
|
|
56
|
-
|
|
57
|
-
- Minor: Perf improvement: Do not clear the config cache on each run ([#368](https://github.com/prettier/eslint-plugin-prettier/issues/368)) ([1b90ea7](https://github.com/prettier/eslint-plugin-prettier/commit/1b90ea752636959babb27ebca5d67093c346dab9))
|
|
58
|
-
- Add peerDependenciesMeta block ([#367](https://github.com/prettier/eslint-plugin-prettier/issues/367)) ([86608d5](https://github.com/prettier/eslint-plugin-prettier/commit/86608d5084692ab0d1f2f49a3df4909d04c39ae7))
|
|
59
|
-
- build(deps-dev): bump eslint from 7.14.0 to 7.15.0 ([885f484](https://github.com/prettier/eslint-plugin-prettier/commit/885f48405e0fc9f312acdd3e3487c824bd59c102))
|
|
60
|
-
- build(deps-dev): bump eslint from 7.3.1 to 7.14.0 ([cebc80b](https://github.com/prettier/eslint-plugin-prettier/commit/cebc80b39d3d09f957a73536e54f6d8dd4567080))
|
|
61
|
-
|
|
62
|
-
## v3.2.0 (2020-12-03)
|
|
63
|
-
|
|
64
|
-
- Skip CI for eslint 6 + node 8 ([#364](https://github.com/prettier/eslint-plugin-prettier/issues/364)) ([f8f08e4](https://github.com/prettier/eslint-plugin-prettier/commit/f8f08e483522d74bc4dd93d9813914aa7ba9314b))
|
|
65
|
-
- Turn off problematic rules in recommended config (prepare for next eslint-config-prettier version) ([#360](https://github.com/prettier/eslint-plugin-prettier/issues/360)) ([a1e5591](https://github.com/prettier/eslint-plugin-prettier/commit/a1e559112073eedfb0dd2041b9c2f6ef775844ec))
|
|
66
|
-
- Create dependabot.yml ([f58b6c7](https://github.com/prettier/eslint-plugin-prettier/commit/f58b6c7c356a37b437593cd6ff8d1dca1c437b13))
|
|
67
|
-
- docs(README): fix prettier getFileInfo link ([#335](https://github.com/prettier/eslint-plugin-prettier/issues/335)) ([5a690f1](https://github.com/prettier/eslint-plugin-prettier/commit/5a690f14d793ba5a08c55287fa3d6338dcda21ba))
|
|
68
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.2.2 to 2.3.0 ([8614c45](https://github.com/prettier/eslint-plugin-prettier/commit/8614c458ed284bc126034d432b49b07d7d67ef06))
|
|
69
|
-
- build(deps-dev): bump eslint from 7.3.0 to 7.3.1 ([12d9ed8](https://github.com/prettier/eslint-plugin-prettier/commit/12d9ed877aacfad2c27f01161cc2eb28a445725f))
|
|
70
|
-
- build(deps-dev): bump eslint from 7.2.0 to 7.3.0 ([5a6f42e](https://github.com/prettier/eslint-plugin-prettier/commit/5a6f42e4eda871a294da1eb55f214c475450faa6))
|
|
71
|
-
- chore: update CI badge in readme ([5012b66](https://github.com/prettier/eslint-plugin-prettier/commit/5012b665f981edbc21feaaccb3cd297f49ca40d3))
|
|
72
|
-
- Use Github Actions for CI ([#305](https://github.com/prettier/eslint-plugin-prettier/issues/305)) ([41eb64f](https://github.com/prettier/eslint-plugin-prettier/commit/41eb64fda33663ed1c43a85218f390c6cd4b6191))
|
|
73
|
-
|
|
74
|
-
## v3.1.4 (2020-06-14)
|
|
75
|
-
|
|
76
|
-
- Avoid clearing Prettier cache when not using prettierrc ([#303](https://github.com/prettier/eslint-plugin-prettier/issues/303)) ([3c8e2d9](https://github.com/prettier/eslint-plugin-prettier/commit/3c8e2d9871d86a82b10fe3d54f32bb5a54f2913b))
|
|
77
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.2.1 to 2.2.2 ([93f7c8b](https://github.com/prettier/eslint-plugin-prettier/commit/93f7c8be7c99a0c3e4b11be6a5311316f76e6e08))
|
|
78
|
-
- build(deps-dev): bump eslint from 7.1.0 to 7.2.0 ([650ac7a](https://github.com/prettier/eslint-plugin-prettier/commit/650ac7a40c1f4d46b0bd37efad3eed84f8155a44))
|
|
79
|
-
- build(deps-dev): bump eslint-plugin-self from 1.2.0 to 1.2.1 ([6449ec1](https://github.com/prettier/eslint-plugin-prettier/commit/6449ec151f119e98d69da91ad6d10dbb374162d8))
|
|
80
|
-
- build(deps-dev): bump eslint from 7.0.0 to 7.1.0 ([fd30022](https://github.com/prettier/eslint-plugin-prettier/commit/fd30022a51a57a4e96dd4ab3e04956b945886874))
|
|
81
|
-
- Chore: Add CI tests for ESLint 7 ([#291](https://github.com/prettier/eslint-plugin-prettier/issues/291)) ([cc2979b](https://github.com/prettier/eslint-plugin-prettier/commit/cc2979b68258b8545931ce37168adfe17b1d3a7b))
|
|
82
|
-
- build(deps-dev): bump eslint-config-prettier from 6.10.1 to 6.11.0 ([35a7ee6](https://github.com/prettier/eslint-plugin-prettier/commit/35a7ee68b02ea3088270210ac8dc85ff47ef65a9))
|
|
83
|
-
|
|
84
|
-
## v3.1.3 (2020-04-13)
|
|
85
|
-
|
|
86
|
-
- Fix: Set `meta.type` to "layout" ([#283](https://github.com/prettier/eslint-plugin-prettier/issues/283)) ([97152e2](https://github.com/prettier/eslint-plugin-prettier/commit/97152e2787bf9bb27f053d6a91ccf826dc96a505))
|
|
87
|
-
- build(deps-dev): bump eslint-config-prettier from 6.10.0 to 6.10.1 ([185b106](https://github.com/prettier/eslint-plugin-prettier/commit/185b1064d3dd674538456fb2fad97fbfcde49e0d))
|
|
88
|
-
- build(deps): [security] bump acorn from 6.1.0 to 6.4.1 ([bba5881](https://github.com/prettier/eslint-plugin-prettier/commit/bba588151e860b1a644096441b31a0f3144db611))
|
|
89
|
-
- build(deps-dev): bump eslint-config-prettier from 6.9.0 to 6.10.0 ([9a47a6f](https://github.com/prettier/eslint-plugin-prettier/commit/9a47a6feab691cf228d184c103d4cab99b464d0b))
|
|
90
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.2.0 to 2.2.1 ([aad671d](https://github.com/prettier/eslint-plugin-prettier/commit/aad671d5123a2fd20e4396d591e25335d7219950))
|
|
91
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.1.0 to 2.2.0 ([e2458c2](https://github.com/prettier/eslint-plugin-prettier/commit/e2458c2d41825f94441dc7d552da37aede95ffe7))
|
|
92
|
-
- build(deps-dev): bump eslint-config-prettier from 6.8.0 to 6.9.0 ([05ef06f](https://github.com/prettier/eslint-plugin-prettier/commit/05ef06ffdda2bb485a2175243e6a8a167a01466c))
|
|
93
|
-
- build(deps-dev): bump eslint-config-prettier from 6.7.0 to 6.8.0 ([ab80b3c](https://github.com/prettier/eslint-plugin-prettier/commit/ab80b3c5d30ea605aa363f13078aef9e0b697b6e))
|
|
94
|
-
- build(deps-dev): bump eslint from 6.7.2 to 6.8.0 ([dea1b30](https://github.com/prettier/eslint-plugin-prettier/commit/dea1b30361921d7160aaf44d5302c5cc6490f87a))
|
|
95
|
-
|
|
96
|
-
## v3.1.2 (2019-12-15)
|
|
97
|
-
|
|
98
|
-
- Resolve config when getting list of inferred parsers ([1ad45be](https://github.com/prettier/eslint-plugin-prettier/commit/1ad45be48ea1ed16e0eb3ba6247163724b956516))
|
|
99
|
-
- Fix tests now they to stop them inheriting from base prettierrc file ([14840fa](https://github.com/prettier/eslint-plugin-prettier/commit/14840fa4c88c938bf30c1fdf1c26c32b2708a3b6))
|
|
100
|
-
- Move prettier config into dedicated file, so vscode plugins pick it up ([c49334a](https://github.com/prettier/eslint-plugin-prettier/commit/c49334a846afa6f688695a4774f7824ee3a05e1c))
|
|
101
|
-
- build(deps-dev): bump eslint from 6.7.1 to 6.7.2 ([15e6cf9](https://github.com/prettier/eslint-plugin-prettier/commit/15e6cf91509cb5b819d2e1fb19dbe9bc71c87893))
|
|
102
|
-
- build(deps-dev): bump eslint from 6.6.0 to 6.7.1 ([e8ad019](https://github.com/prettier/eslint-plugin-prettier/commit/e8ad0195000af416f3315396e9c02fea261391cc))
|
|
103
|
-
- build(deps-dev): bump eslint-config-prettier from 6.6.0 to 6.7.0 ([44f4bfe](https://github.com/prettier/eslint-plugin-prettier/commit/44f4bfe0b6f63234afeba266928b39b762269282))
|
|
104
|
-
- build(deps-dev): bump eslint-config-prettier from 6.5.0 to 6.6.0 ([46580c5](https://github.com/prettier/eslint-plugin-prettier/commit/46580c55914057dee5089e9c6e525e41996888d1))
|
|
105
|
-
- build(deps-dev): bump prettier from 1.18.2 to 1.19.1 ([10b4676](https://github.com/prettier/eslint-plugin-prettier/commit/10b46763fd007a8f939e43635831aec590717e87))
|
|
106
|
-
- build(deps-dev): bump eslint from 6.5.1 to 6.6.0 ([53eaeae](https://github.com/prettier/eslint-plugin-prettier/commit/53eaeaec91c158b66cc04dbf80f9631bb82285bf))
|
|
107
|
-
- build(deps-dev): bump eslint-config-prettier from 6.4.0 to 6.5.0 ([ad3321c](https://github.com/prettier/eslint-plugin-prettier/commit/ad3321c3ae6e963317fedcdd205ba719bf933d74))
|
|
108
|
-
- build(deps-dev): bump mocha from 6.2.1 to 6.2.2 ([b7280b6](https://github.com/prettier/eslint-plugin-prettier/commit/b7280b68eaae243aa33de364576cddf0844c6848))
|
|
109
|
-
- build(deps-dev): bump eslint-config-prettier from 6.3.0 to 6.4.0 ([4c1d69a](https://github.com/prettier/eslint-plugin-prettier/commit/4c1d69a8022c709cd62e964a82c7dbc7963f0544))
|
|
110
|
-
- build(deps-dev): bump eslint from 6.5.0 to 6.5.1 ([c109a7a](https://github.com/prettier/eslint-plugin-prettier/commit/c109a7a5acca9533feae6258e9ac4934359ed9b3))
|
|
111
|
-
- build(deps-dev): bump mocha from 6.2.0 to 6.2.1 ([3134bea](https://github.com/prettier/eslint-plugin-prettier/commit/3134beab61dee13aa2c73762a55f51f868553e8a))
|
|
112
|
-
- build(deps-dev): bump eslint from 6.4.0 to 6.5.0 ([7c290d7](https://github.com/prettier/eslint-plugin-prettier/commit/7c290d799e319b39519d81a110b62846894bc7ba))
|
|
113
|
-
|
|
114
|
-
## v3.1.1 (2019-09-18)
|
|
115
|
-
|
|
116
|
-
- build(deps-dev): bump eslint from 6.3.0 to 6.4.0 ([8a793eb](https://github.com/prettier/eslint-plugin-prettier/commit/8a793eba54ff01493e3ee83daf4dcb782d039fdd))
|
|
117
|
-
- build(deps-dev): bump eslint-config-prettier from 6.2.0 to 6.3.0 ([88c3f6c](https://github.com/prettier/eslint-plugin-prettier/commit/88c3f6cb510b758e6dc866a1ad1a0484ef074484))
|
|
118
|
-
- build(deps-dev): bump eslint-config-prettier from 6.0.0 to 6.2.0 ([5f9fbc1](https://github.com/prettier/eslint-plugin-prettier/commit/5f9fbc16f91d88a5c77b8b9d942b82424add77a5))
|
|
119
|
-
- build(deps-dev): bump eslint from 6.2.2 to 6.3.0 ([746b66d](https://github.com/prettier/eslint-plugin-prettier/commit/746b66dc701e8226930f6e4d8386bd500dcb303b))
|
|
120
|
-
- build(deps-dev): bump eslint from 6.1.0 to 6.2.2 ([97eedb4](https://github.com/prettier/eslint-plugin-prettier/commit/97eedb4734a4c569d4c24a62cffe024c2a26c178))
|
|
121
|
-
- build(deps-dev): bump eslint from 6.0.1 to 6.1.0 ([afef9d1](https://github.com/prettier/eslint-plugin-prettier/commit/afef9d137c8b7887c63e3f8d51cabf42851f5cf1))
|
|
122
|
-
- build(deps-dev): bump mocha from 6.1.4 to 6.2.0 ([0360a84](https://github.com/prettier/eslint-plugin-prettier/commit/0360a845ce530d8c25f390961d6446b4c58e85ac))
|
|
123
|
-
- build(deps): [security] bump lodash from 4.17.11 to 4.17.14 ([9eceb68](https://github.com/prettier/eslint-plugin-prettier/commit/9eceb6834fcd003c5680c3202b656ca3474c19c2))
|
|
124
|
-
- Fix: When forcing the JS parser, use the modern name ([#212](https://github.com/prettier/eslint-plugin-prettier/issues/212)) ([1385310](https://github.com/prettier/eslint-plugin-prettier/commit/1385310fce778a8c771d0dab0e400725c9f9d82e))
|
|
125
|
-
- Add eslint 6 to test matrix ([#210](https://github.com/prettier/eslint-plugin-prettier/issues/210)) ([bca77e6](https://github.com/prettier/eslint-plugin-prettier/commit/bca77e66ed1eba682eb13055862adc70478d472b))
|
|
126
|
-
- build(deps-dev): bump eslint-config-prettier from 5.0.0 to 6.0.0 ([4c069bd](https://github.com/prettier/eslint-plugin-prettier/commit/4c069bd0f3b907039569964e747479aa06279594))
|
|
127
|
-
- build(deps-dev): bump eslint-config-prettier from 4.3.0 to 5.0.0 ([60bb22f](https://github.com/prettier/eslint-plugin-prettier/commit/60bb22f4ae1d6af001ba55338a7cb08111db23d9))
|
|
128
|
-
- build(deps-dev): bump prettier from 1.18.0 to 1.18.2 ([a183560](https://github.com/prettier/eslint-plugin-prettier/commit/a1835600facebc819e31a0816061e62f8be2cd8b))
|
|
129
|
-
- build(deps-dev): bump prettier from 1.17.1 to 1.18.0 ([0cad479](https://github.com/prettier/eslint-plugin-prettier/commit/0cad4793abb6139eb9d6853b5adef7469aef756d))
|
|
130
|
-
- build(deps-dev): bump eslint-config-prettier from 4.2.0 to 4.3.0 ([6f3c76f](https://github.com/prettier/eslint-plugin-prettier/commit/6f3c76fd75dc4f982d1221e6b4802329b32176a9))
|
|
131
|
-
- build(deps-dev): bump prettier from 1.17.0 to 1.17.1 ([03aecfd](https://github.com/prettier/eslint-plugin-prettier/commit/03aecfd49b96d055ff54ec989c93408a9fb3f3ee))
|
|
132
|
-
|
|
133
|
-
## v3.1.0 (2019-05-11)
|
|
134
|
-
|
|
135
|
-
- New: Allow options to be passed to prettier.getFileInfo ([#187](https://github.com/prettier/eslint-plugin-prettier/issues/187)) ([21fa69a](https://github.com/prettier/eslint-plugin-prettier/commit/21fa69a8ed3b6acfc5461f6c3332444c21e65e28))
|
|
136
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.0.1 to 2.1.0 ([bb597e1](https://github.com/prettier/eslint-plugin-prettier/commit/bb597e14aba46211fd4149d0b0f1bdc51fe76452))
|
|
137
|
-
- build(deps-dev): bump eslint-config-prettier from 4.1.0 to 4.2.0 ([0bb7c1d](https://github.com/prettier/eslint-plugin-prettier/commit/0bb7c1d361b581fddebd64bf172b5dedcad5149c))
|
|
138
|
-
- build(deps-dev): bump vue-eslint-parser from 6.0.3 to 6.0.4 ([2f77df4](https://github.com/prettier/eslint-plugin-prettier/commit/2f77df48f151d4975bbdb29ced8c74a72d011428))
|
|
139
|
-
- build(deps-dev): bump mocha from 6.1.3 to 6.1.4 ([222b87a](https://github.com/prettier/eslint-plugin-prettier/commit/222b87a347331b20b3e7f65dcdfaa491bd277b3a))
|
|
140
|
-
- build(deps-dev): bump prettier from 1.16.4 to 1.17.0 ([58d8ff8](https://github.com/prettier/eslint-plugin-prettier/commit/58d8ff8ab2b1f73c904f5492eb523d7ea585ed8f))
|
|
141
|
-
- build(deps-dev): bump mocha from 6.1.2 to 6.1.3 ([e94e56c](https://github.com/prettier/eslint-plugin-prettier/commit/e94e56c36018aab6e08452fbe05bb16a23d64197))
|
|
142
|
-
- build(deps-dev): bump mocha from 6.1.1 to 6.1.2 ([c02244b](https://github.com/prettier/eslint-plugin-prettier/commit/c02244b197893f4e2a214d43f755b726cecbd03c))
|
|
143
|
-
- build(deps-dev): bump mocha from 6.0.2 to 6.1.1 ([a9a2e4e](https://github.com/prettier/eslint-plugin-prettier/commit/a9a2e4e3c0a243ec73061c10d9c4a5ae0c0e6f68))
|
|
144
|
-
- build(deps-dev): bump eslint from 5.15.3 to 5.16.0 ([073c14c](https://github.com/prettier/eslint-plugin-prettier/commit/073c14c2ae5c43d0939fe6f475561f1cf3d7a3e5))
|
|
145
|
-
- build(deps-dev): bump eslint from 5.15.2 to 5.15.3 ([bda931f](https://github.com/prettier/eslint-plugin-prettier/commit/bda931f4f1344f6927fbfd3a35965d1a4d319642))
|
|
146
|
-
- build(deps-dev): bump eslint from 5.15.1 to 5.15.2 ([19f53d6](https://github.com/prettier/eslint-plugin-prettier/commit/19f53d6a94a701e0aab9630bef93051aec4dfd36))
|
|
147
|
-
- build(deps-dev): bump eslint from 5.15.0 to 5.15.1 ([34b39de](https://github.com/prettier/eslint-plugin-prettier/commit/34b39dec2e6e283da1ca6faa0c636c5361efb5b9))
|
|
148
|
-
- build(deps-dev): bump eslint from 5.14.1 to 5.15.0 ([13bcc66](https://github.com/prettier/eslint-plugin-prettier/commit/13bcc66c120d614c17040e329360510feab47e7d))
|
|
149
|
-
- build(deps-dev): bump eslint-plugin-self from 1.1.0 to 1.2.0 ([5b4adb8](https://github.com/prettier/eslint-plugin-prettier/commit/5b4adb8ce683a93feddad07eda17d99b41849342))
|
|
150
|
-
- build(deps-dev): bump vue-eslint-parser from 6.0.2 to 6.0.3 ([e676cd1](https://github.com/prettier/eslint-plugin-prettier/commit/e676cd19387e70102467d9a82014906561f3c225))
|
|
151
|
-
- build(deps-dev): bump eslint-config-prettier from 4.0.0 to 4.1.0 ([b8a9215](https://github.com/prettier/eslint-plugin-prettier/commit/b8a9215515cdcb75faf212caeb00dfbcae11ee42))
|
|
152
|
-
- build(deps-dev): bump mocha from 6.0.1 to 6.0.2 ([cde36e4](https://github.com/prettier/eslint-plugin-prettier/commit/cde36e4db18ac4442eba3c75a20c1a6605e937d4))
|
|
153
|
-
- build(deps-dev): bump mocha from 6.0.0 to 6.0.1 ([eb39699](https://github.com/prettier/eslint-plugin-prettier/commit/eb39699b9bdf7c406a3134cc26c404947534661d))
|
|
154
|
-
- build(deps-dev): bump mocha from 5.2.0 to 6.0.0 ([5d75421](https://github.com/prettier/eslint-plugin-prettier/commit/5d75421d5e3ee5f8293b47a5825e1f2415f7e6b9))
|
|
155
|
-
- build(deps-dev): bump eslint from 5.14.0 to 5.14.1 ([829156e](https://github.com/prettier/eslint-plugin-prettier/commit/829156e467e53f554691afa687c13715086974f7))
|
|
156
|
-
- build(deps-dev): bump eslint from 5.13.0 to 5.14.0 ([b76d0b4](https://github.com/prettier/eslint-plugin-prettier/commit/b76d0b4471845143630b3603b97607665bf66ca0))
|
|
157
|
-
- build(deps-dev): bump vue-eslint-parser from 6.0.0 to 6.0.2 ([15439e8](https://github.com/prettier/eslint-plugin-prettier/commit/15439e8e0dcfa11a19f0cf249a1f4ad5f7fa5b96))
|
|
158
|
-
- build(deps-dev): bump vue-eslint-parser from 5.0.0 to 6.0.0 ([0ea70e5](https://github.com/prettier/eslint-plugin-prettier/commit/0ea70e5161d315ab93e6c4eb93f76d5304b8c162))
|
|
159
|
-
- build(deps-dev): bump eslint from 5.12.1 to 5.13.0 ([5f18729](https://github.com/prettier/eslint-plugin-prettier/commit/5f18729dbe359fe0df10730fd768a1ca6949b0a2))
|
|
160
|
-
- build(deps-dev): bump prettier from 1.16.3 to 1.16.4 ([ef637fe](https://github.com/prettier/eslint-plugin-prettier/commit/ef637fea4d6028b472cfe56dcb4fe30ee7939e0d))
|
|
161
|
-
- build(deps-dev): bump prettier from 1.16.1 to 1.16.3 ([58ab20c](https://github.com/prettier/eslint-plugin-prettier/commit/58ab20cc03f81a7d668998e64168eef7ad5b4365))
|
|
162
|
-
- build(deps-dev): bump eslint-config-prettier from 3.6.0 to 4.0.0 ([14393bd](https://github.com/prettier/eslint-plugin-prettier/commit/14393bdbcfd6114e810c10b4b7f905485474a36f))
|
|
163
|
-
- build(deps-dev): bump prettier from 1.16.0 to 1.16.1 ([00198b9](https://github.com/prettier/eslint-plugin-prettier/commit/00198b9795d1341f4c4a488c83f656e74f6bfdb0))
|
|
164
|
-
- build(deps-dev): bump prettier from 1.15.3 to 1.16.0 ([7890a87](https://github.com/prettier/eslint-plugin-prettier/commit/7890a876fc1c22b1fdee8724296eaa56eb6df1a3))
|
|
165
|
-
- build(deps-dev): bump eslint from 5.12.0 to 5.12.1 ([92a8984](https://github.com/prettier/eslint-plugin-prettier/commit/92a898470fbd88a4f5f4d8e1b15cf53bd7f8a92e))
|
|
166
|
-
- build(deps-dev): bump eslint-config-prettier from 3.5.0 to 3.6.0 ([5292d12](https://github.com/prettier/eslint-plugin-prettier/commit/5292d127dfd4f90ec6695d4060b5f5447a2c0119))
|
|
167
|
-
- build(deps-dev): bump eslint-config-prettier from 3.4.0 to 3.5.0 ([44a2558](https://github.com/prettier/eslint-plugin-prettier/commit/44a2558820d1c733f1572c98503e7b00b16b3fb7))
|
|
168
|
-
- build(deps-dev): bump eslint-config-prettier from 3.3.0 to 3.4.0 ([425cfce](https://github.com/prettier/eslint-plugin-prettier/commit/425cfce1bb712c96dfdd2292b04d89cceb375681))
|
|
169
|
-
- build(deps-dev): bump eslint from 5.11.1 to 5.12.0 ([3e9aa39](https://github.com/prettier/eslint-plugin-prettier/commit/3e9aa399ee3c0394a397f6ed3f8ec7c5e1597991))
|
|
170
|
-
- build(deps-dev): bump eslint-plugin-node from 8.0.0 to 8.0.1 ([e913afd](https://github.com/prettier/eslint-plugin-prettier/commit/e913afdd7291b5e58adf567f5e7a5bb9257dc9e3))
|
|
171
|
-
- build(deps-dev): bump vue-eslint-parser from 4.0.3 to 5.0.0 ([ecfd5ba](https://github.com/prettier/eslint-plugin-prettier/commit/ecfd5bab7bfb36e0203a334808243cb85aaeb512))
|
|
172
|
-
|
|
173
|
-
## v3.0.1 (2018-12-28)
|
|
174
|
-
|
|
175
|
-
- Catch and format SyntaxErrors as eslint violations ([#141](https://github.com/prettier/eslint-plugin-prettier/issues/141)) ([4a0e57d](https://github.com/prettier/eslint-plugin-prettier/commit/4a0e57ddcc0fa2ae8e8f7d8b65ddc4ac93d9f474))
|
|
176
|
-
- build(deps-dev): bump eslint from 5.11.0 to 5.11.1 ([d34daed](https://github.com/prettier/eslint-plugin-prettier/commit/d34daed47fbda09cbd19a73c38323e0aed0c30d5))
|
|
177
|
-
- build(deps-dev): bump eslint from 5.10.0 to 5.11.0 ([7f4f45d](https://github.com/prettier/eslint-plugin-prettier/commit/7f4f45dd132ecd72207b536b86910bebf15693b6))
|
|
178
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 2.0.0 to 2.0.1 ([5be3bcf](https://github.com/prettier/eslint-plugin-prettier/commit/5be3bcfce11b741cd35c92b9c972e457a4038766))
|
|
179
|
-
- build(deps-dev): bump eslint from 5.9.0 to 5.10.0 ([11e7c44](https://github.com/prettier/eslint-plugin-prettier/commit/11e7c447a8ebcfae213afe6ba872f96adb43e6b9))
|
|
180
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 1.4.1 to 2.0.0 ([9e5bf14](https://github.com/prettier/eslint-plugin-prettier/commit/9e5bf140451f82a36c78042315a9f88a12cfe45f))
|
|
181
|
-
- build(deps-dev): bump vue-eslint-parser from 4.0.2 to 4.0.3 ([234583a](https://github.com/prettier/eslint-plugin-prettier/commit/234583a19a97ecd1f996542ccb1178a26d20c0fd))
|
|
182
|
-
- build(deps-dev): bump vue-eslint-parser from 3.3.0 to 4.0.2 ([8675d57](https://github.com/prettier/eslint-plugin-prettier/commit/8675d5713f5171981119b89c2e8a58fda6b81259))
|
|
183
|
-
- Upgrade: Bump vue-eslint-parser from 3.2.2 to 3.3.0 ([2379e93](https://github.com/prettier/eslint-plugin-prettier/commit/2379e93c7fb81ddfe306c1fe6a10d1833cfddf2c))
|
|
184
|
-
- Upgrade: Bump eslint-config-prettier from 3.1.0 to 3.3.0 ([3ea0021](https://github.com/prettier/eslint-plugin-prettier/commit/3ea00218961b75e475def14372f9eab0de5ad05d))
|
|
185
|
-
- Upgrade: Bump eslint from 5.8.0 to 5.9.0 ([c774fb8](https://github.com/prettier/eslint-plugin-prettier/commit/c774fb87fe53d19389964883f05e77309b321139))
|
|
186
|
-
- build(deps-dev): bump eslint-plugin-node from 7.0.1 to 8.0.0 ([#121](https://github.com/prettier/eslint-plugin-prettier/issues/121)) ([2a4fba0](https://github.com/prettier/eslint-plugin-prettier/commit/2a4fba01222f62a576da48478e3dcd832e3bff7e))
|
|
187
|
-
- build(deps-dev): bump eslint-plugin-eslint-plugin from 1.4.0 to 1.4.1 ([#120](https://github.com/prettier/eslint-plugin-prettier/issues/120)) ([29caa29](https://github.com/prettier/eslint-plugin-prettier/commit/29caa299612db8af7a188749a5dd8b9827f51a67))
|
|
188
|
-
- build(deps-dev): bump eslint from 5.6.0 to 5.8.0 ([#119](https://github.com/prettier/eslint-plugin-prettier/issues/119)) ([2836350](https://github.com/prettier/eslint-plugin-prettier/commit/2836350829dc3c19b4c1ebca33a3a7905c1b28a5))
|
|
189
|
-
|
|
190
|
-
## v3.0.0 (2018-10-01)
|
|
191
|
-
|
|
192
|
-
- Chore: Add eslint peer-dependency ([d55d79c](https://github.com/prettier/eslint-plugin-prettier/commit/d55d79c6a64f659f405788fc75f344704619979f))
|
|
193
|
-
- Breaking: Extract showInvisibles and generateDifferences ([bf7c40c](https://github.com/prettier/eslint-plugin-prettier/commit/bf7c40c240d9833548a7c9d210a28c90a4f3957b))
|
|
194
|
-
- Breaking: Defining prettier options must use an object ([478c7e5](https://github.com/prettier/eslint-plugin-prettier/commit/478c7e5d2165f3e67e893c9a317b602159eaff9c))
|
|
195
|
-
- Breaking: Drop support for ESLint v3 and v4 ([2326231](https://github.com/prettier/eslint-plugin-prettier/commit/232623179b16b99c0cf89ec9b8ed7660c69b092d))
|
|
196
|
-
- Chore: Update dependencies ([1ec94c8](https://github.com/prettier/eslint-plugin-prettier/commit/1ec94c8e3495f6964588da5264b890cb49616fff))
|
|
197
|
-
- Chore: remove two unused dependencies ([bfe459c](https://github.com/prettier/eslint-plugin-prettier/commit/bfe459c39b742115137e81278f03f8e6abfd7dcf))
|
|
198
|
-
- Chore: Rename test files to keep them sequential ([d38ea52](https://github.com/prettier/eslint-plugin-prettier/commit/d38ea52debdf9da718c60933f42a709fa05f550f))
|
|
199
|
-
- Breaking: Remove pragma support ([3af422c](https://github.com/prettier/eslint-plugin-prettier/commit/3af422c8e301978b611cfc665e052d48c102b443))
|
|
200
|
-
- Breaking: Update minimum required pretter version to 1.13.0 ([29c0506](https://github.com/prettier/eslint-plugin-prettier/commit/29c050605674fda2975b3b620c89a7eb9332641a))
|
|
201
|
-
- Breaking: Drop support for node v4, v7 and v9 ([be460bd](https://github.com/prettier/eslint-plugin-prettier/commit/be460bdd06fafb04442b440efabc7b36b12934a7))
|
|
202
|
-
- Chore: Add vscode config to autoformat on save ([9fac6b4](https://github.com/prettier/eslint-plugin-prettier/commit/9fac6b4039c1983b83073fa7af7864f0d7e1f2d3))
|
|
203
|
-
- Chore: Improve travis matrix ([46d2444](https://github.com/prettier/eslint-plugin-prettier/commit/46d244409e397ba9ff2dea621e99a4ea90e0585b))
|
|
204
|
-
- Chore: Add format script to run prettier ([d46aa6d](https://github.com/prettier/eslint-plugin-prettier/commit/d46aa6dbd8028802121231d3ae0fe3f837bca9ad))
|
|
205
|
-
|
|
206
|
-
## v2.7.0 (2018-09-26)
|
|
207
|
-
|
|
208
|
-
- Update: Support prettierignore and custom processors ([#111](https://github.com/prettier/eslint-plugin-prettier/issues/111)) ([38537ba](https://github.com/prettier/eslint-plugin-prettier/commit/38537ba35fc9152852c3b91f3041d72556b43013))
|
|
209
|
-
- Build: switch to release script package ([047dc8f](https://github.com/prettier/eslint-plugin-prettier/commit/047dc8ffdf006c74267df4902fec684c589dad12))
|
|
210
|
-
|
|
211
|
-
## v2.6.2 (2018-07-06)
|
|
212
|
-
|
|
213
|
-
- Fix: Add representation for \r to showInvisibles ([#100](https://github.com/prettier/eslint-plugin-prettier/issues/100)) ([731bbb5](https://github.com/prettier/eslint-plugin-prettier/commit/731bbb576ce422a5c73a1fa9750aa3466c7da928))
|
|
214
|
-
- Docs: Add clarification about Flow/React support to readme ([#96](https://github.com/prettier/eslint-plugin-prettier/issues/96)) ([977aa77](https://github.com/prettier/eslint-plugin-prettier/commit/977aa77a119f22af3f8ca8d6f47e5bcfcc9e23fb))
|
|
215
|
-
|
|
216
|
-
## v2.6.1 (2018-06-23)
|
|
217
|
-
|
|
218
|
-
- Fix: respect editorconfig ([#92](https://github.com/prettier/eslint-plugin-prettier/issues/92)) ([0b04dd3](https://github.com/prettier/eslint-plugin-prettier/commit/0b04dd362d0d92534a7cf11eaebbab8eb59fc96d))
|
|
219
|
-
|
|
220
|
-
## v2.6.0 (2018-02-02)
|
|
221
|
-
|
|
222
|
-
- Update: Add option to skip loading prettierrc ([#83](https://github.com/prettier/eslint-plugin-prettier/issues/83)) ([9e0fb48](https://github.com/prettier/eslint-plugin-prettier/commit/9e0fb48d077214a81ac549731308ab11512c37cd))
|
|
223
|
-
- Build: add Node 8 and 9 to Travis ([e5b5fa7](https://github.com/prettier/eslint-plugin-prettier/commit/e5b5fa74d06a06a53d04c4748b31e24fcd7a41b9))
|
|
224
|
-
- Chore: add test for vue parsing ([1ab43fd](https://github.com/prettier/eslint-plugin-prettier/commit/1ab43fd601a67100cb03bbfe614203fd399d40bb))
|
|
225
|
-
|
|
226
|
-
## v2.5.0 (2018-01-16)
|
|
227
|
-
|
|
228
|
-
- Fix: pass filepath to prettier ([#76](https://github.com/prettier/eslint-plugin-prettier/issues/76)) ([0b6ab55](https://github.com/prettier/eslint-plugin-prettier/commit/0b6ab55e0a48e9c31cfa1d7f3b891100e0580493))
|
|
229
|
-
- Update: Add URL to rule documentation to the metadata ([#75](https://github.com/prettier/eslint-plugin-prettier/issues/75)) ([804ead7](https://github.com/prettier/eslint-plugin-prettier/commit/804ead7406e12024a1f9c28628024e5d63b75854))
|
|
230
|
-
|
|
231
|
-
## v2.4.0 (2017-12-17)
|
|
232
|
-
|
|
233
|
-
- New: Add 'recommended' configuration ([#73](https://github.com/prettier/eslint-plugin-prettier/issues/73)) ([e529b60](https://github.com/prettier/eslint-plugin-prettier/commit/e529b6004b278fb8de660c75d69381ea071b2114))
|
|
234
|
-
- Docs: Create ISSUE_TEMPLATE.md ([4335b08](https://github.com/prettier/eslint-plugin-prettier/commit/4335b08f2956f695eda20f9ca41653fe15b6538d))
|
|
235
|
-
|
|
236
|
-
## v2.3.1 (2017-09-18)
|
|
237
|
-
|
|
238
|
-
- Fix: Guard against older prettier installation ([#56](https://github.com/prettier/eslint-plugin-prettier/issues/56)) ([8a115f9](https://github.com/prettier/eslint-plugin-prettier/commit/8a115f9cc57dc20c9fc5c2b942f1e4770a5d730e))
|
|
239
|
-
|
|
240
|
-
## v2.3.0 (2017-09-18)
|
|
241
|
-
|
|
242
|
-
- Update: Support .prettierrc config files (fixes [#46](https://github.com/prettier/eslint-plugin-prettier/issues/46)) ([#55](https://github.com/prettier/eslint-plugin-prettier/issues/55)) ([bc89153](https://github.com/prettier/eslint-plugin-prettier/commit/bc89153ffa733b3b58f123849485d7990577c216))
|
|
243
|
-
- Docs: .eslintrc.json > .eslintrc ([#52](https://github.com/prettier/eslint-plugin-prettier/issues/52)) ([95f0808](https://github.com/prettier/eslint-plugin-prettier/commit/95f0808416f7493426c822790d79cf22b0db0f22))
|
|
244
|
-
- Upgrade: jest-docblock to ^21.0.0 ([#50](https://github.com/prettier/eslint-plugin-prettier/issues/50)) ([c777111](https://github.com/prettier/eslint-plugin-prettier/commit/c777111a526c87236b8853d7e253ee93ac1d988d))
|
|
245
|
-
- Chore: upgrade prettier to ^1.6.1 ([#49](https://github.com/prettier/eslint-plugin-prettier/issues/49)) ([56deffa](https://github.com/prettier/eslint-plugin-prettier/commit/56deffae056c0165a7ed2b993b7cf78b6c71148a))
|
|
246
|
-
- Chore: use eslint-plugin-self for linting ([#47](https://github.com/prettier/eslint-plugin-prettier/issues/47)) ([5ea0526](https://github.com/prettier/eslint-plugin-prettier/commit/5ea05269cc947c2e30a42e5101140ab6faac311a))
|
|
247
|
-
|
|
248
|
-
## v2.2.0 (2017-08-16)
|
|
249
|
-
|
|
250
|
-
- New: expose reporter api (fixes [#39](https://github.com/prettier/eslint-plugin-prettier/issues/39)) ([#41](https://github.com/prettier/eslint-plugin-prettier/issues/41)) ([1666067](https://github.com/prettier/eslint-plugin-prettier/commit/1666067aa396dfe6a622eb1d9fd5d21fa851a612))
|
|
251
|
-
|
|
252
|
-
## v2.1.2 (2017-06-14)
|
|
253
|
-
|
|
254
|
-
- Chore: Relax peerDependencies ([#30](https://github.com/prettier/eslint-plugin-prettier/issues/30)) ([a19b8af](https://github.com/prettier/eslint-plugin-prettier/commit/a19b8afc5b3e7a05468e1c566d359f80f13b80cd))
|
|
255
|
-
- Chore: Add release script ([#25](https://github.com/prettier/eslint-plugin-prettier/issues/25)) ([8fbfe73](https://github.com/prettier/eslint-plugin-prettier/commit/8fbfe73ec2cdba4c313e9e3add4b602fc3166ab8))
|
|
256
|
-
|
|
257
|
-
## v2.1.1 (2017-05-19)
|
|
258
|
-
|
|
259
|
-
- Fix: Support ESLint <3.11.0 ([#24](https://github.com/prettier/eslint-plugin-prettier/issues/24)) ([fde7fdf](https://github.com/prettier/eslint-plugin-prettier/commit/fde7fdf2e2dcb3a1f164e1fddb337070802d2c68))
|
|
260
|
-
- Chore: add yarn.lock ([#23](https://github.com/prettier/eslint-plugin-prettier/issues/23)) ([8b55518](https://github.com/prettier/eslint-plugin-prettier/commit/8b555187937a7e37ad84324c4331478b04898493))
|
|
261
|
-
- Docs: fix links in changelog ([#22](https://github.com/prettier/eslint-plugin-prettier/issues/22)) ([7e70e11](https://github.com/prettier/eslint-plugin-prettier/commit/7e70e11de37ca77f5aeb3dcdb216e1a421b54f0d))
|
|
262
|
-
|
|
263
|
-
## v2.1.0 (2017-05-16)
|
|
264
|
-
|
|
265
|
-
- Merge with eslint-plugin-prettify ([#21](https://github.com/prettier/eslint-plugin-prettier/issues/21)) ([6de494f](https://github.com/prettier/eslint-plugin-prettier/commit/6de494fd685a107f3a9a371e663a1f8d68d6d31f))
|
|
266
|
-
- Docs: update repo links to new URL ([#18](https://github.com/prettier/eslint-plugin-prettier/issues/18)) ([6b69492](https://github.com/prettier/eslint-plugin-prettier/commit/6b694928e6e6c192dcb06e6287272fb40cbad17d))
|
|
267
|
-
- Chore: Upgrade development dependencies ([#16](https://github.com/prettier/eslint-plugin-prettier/issues/16)) ([12984ea](https://github.com/prettier/eslint-plugin-prettier/commit/12984ead6c46156b25607c9a8b03ae17def7ef9e))
|
|
268
|
-
- Docs: fix outdated info about prettier's semicolon support ([da6aad1](https://github.com/prettier/eslint-plugin-prettier/commit/da6aad15ea22aa899b26b5ce0979f4a945d80319))
|
|
269
|
-
- Docs: update prettier options in example ([#14](https://github.com/prettier/eslint-plugin-prettier/issues/14)) ([0ae173f](https://github.com/prettier/eslint-plugin-prettier/commit/0ae173f2731b02c0ed72a6cb49efdbdcff54a419))
|
|
270
|
-
- Docs: Change the order of dependencies install ([#13](https://github.com/prettier/eslint-plugin-prettier/issues/13)) ([cbf803c](https://github.com/prettier/eslint-plugin-prettier/commit/cbf803ccf0add6e324ae1513b5260e31bf9a3c05))
|
|
271
|
-
- Docs: Add CONTRIBUTING.md (fixes [#9](https://github.com/prettier/eslint-plugin-prettier/issues/9)) ([40fe55b](https://github.com/prettier/eslint-plugin-prettier/commit/40fe55b3d8c000787b0dcbfa0aed4f0d930808a9))
|
|
272
|
-
|
|
273
|
-
## v2.0.1 (2017-02-26)
|
|
274
|
-
|
|
275
|
-
- Docs: add travis badge to README.md ([1daa495](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/1daa49558a7f904f8d307d3d434a9bc80f41fee6))
|
|
276
|
-
- Upgrade: prettier to 0.18.0 ([1700e41](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/1700e41b2c66721b521e766052cfaa3cc59cd219))
|
|
277
|
-
- Chore: use eslint-config-prettier ([c979b84](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/c979b84641c42f8870c21c69d22b75916c8511e0))
|
|
278
|
-
- Fix: avoid relying on an internal eslint function ([5296930](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/5296930386ef28a26e0f5c606d107e4293f51620))
|
|
279
|
-
- Docs: mention eslint-config-prettier in README.md ([3fd855d](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/3fd855dfb356c8616c19b51b70eb5fcb8fb90c9c))
|
|
280
|
-
- Chore: pin the version of prettier used to lint this module (refs [#1](https://github.com/not-an-aardvark/eslint-plugin-prettier/issues/1)) ([db85633](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/db85633a0360caeebbf5b20195a3bc19ebf7177a))
|
|
281
|
-
|
|
282
|
-
## v2.0.0 (2017-01-28)
|
|
283
|
-
|
|
284
|
-
- Docs: create changelog ([d388095](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/d388095314f5c23b12df2b210219dca4cb31cb2d))
|
|
285
|
-
- Docs: add 2.0.0 migration guide ([db508d7](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/db508d709c92ce60eee6f9f879af44c8d0b44d1d))
|
|
286
|
-
- Breaking: Make prettier a peerDependency ([#1](https://github.com/not-an-aardvark/eslint-plugin-prettier/issues/1)) ([d8a8992](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/d8a89922ddc6b747c474b62a0948deba6ea2657d))
|
|
287
|
-
- Docs: add repo url to package.json ([2474bc9](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/2474bc9dd3f05dbd0b1fec38e27bc91a9cb0f1c7))
|
|
288
|
-
- Docs: suggest prettier-eslint if eslint rules disagree with prettier ([3414437](https://github.com/not-an-aardvark/eslint-plugin-prettier/commit/341443754ae231a17d82f037f8b35663257d282a))
|