|
|
@ -1,5 +1,38 @@ |
|
|
|
// Jest Snapshot v1, https://goo.gl/fbAQLP |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent directory (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent directory (stdout) 1`] = ` |
|
|
|
"function f() { |
|
|
|
console.log(\\"should be indented with a tab\\") |
|
|
|
} |
|
|
|
" |
|
|
|
`; |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent directory (write) 1`] = `Array []`; |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent file (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent file (stdout) 1`] = ` |
|
|
|
"function f() { |
|
|
|
console.log(\\"should be indented with a tab\\") |
|
|
|
} |
|
|
|
" |
|
|
|
`; |
|
|
|
|
|
|
|
exports[`apply editorconfig for stdin-filepath with nonexistent file (write) 1`] = `Array []`; |
|
|
|
|
|
|
|
exports[`don’t apply editorconfig outside project for stdin-filepath with nonexistent directory (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`don’t apply editorconfig outside project for stdin-filepath with nonexistent directory (stdout) 1`] = ` |
|
|
|
"function f() { |
|
|
|
console.log(\\"should be indented with 2 spaces\\") |
|
|
|
} |
|
|
|
" |
|
|
|
`; |
|
|
|
|
|
|
|
exports[`don’t apply editorconfig outside project for stdin-filepath with nonexistent directory (write) 1`] = `Array []`; |
|
|
|
|
|
|
|
exports[`format correctly if stdin content compatible with stdin-filepath (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`format correctly if stdin content compatible with stdin-filepath (stdout) 1`] = ` |
|
|
@ -11,6 +44,17 @@ exports[`format correctly if stdin content compatible with stdin-filepath (stdou |
|
|
|
|
|
|
|
exports[`format correctly if stdin content compatible with stdin-filepath (write) 1`] = `Array []`; |
|
|
|
|
|
|
|
exports[`gracefully handle stdin-filepath with nonexistent directory (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`gracefully handle stdin-filepath with nonexistent directory (stdout) 1`] = ` |
|
|
|
".name { |
|
|
|
display: none; |
|
|
|
} |
|
|
|
" |
|
|
|
`; |
|
|
|
|
|
|
|
exports[`gracefully handle stdin-filepath with nonexistent directory (write) 1`] = `Array []`; |
|
|
|
|
|
|
|
exports[`output file as-is if stdin-filepath matched patterns in ignore-path (stderr) 1`] = `""`; |
|
|
|
|
|
|
|
exports[`output file as-is if stdin-filepath matched patterns in ignore-path (write) 1`] = `Array []`; |
|
|
|