diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-11-18 22:54:28 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-18 23:54:28 +0100 |
commit | 106d47a0136c04ca219a81c3f91505116e13855e (patch) | |
tree | 040c9523877731416af6bdce366cc33ec60b90e3 /tests/specs | |
parent | c36f877f8d98f9756154e26809c614d6749b3fd1 (diff) |
feat: fmt and lint respect .gitignore file (#26897)
Closes https://github.com/denoland/deno/issues/26573
Diffstat (limited to 'tests/specs')
-rw-r--r-- | tests/specs/fmt/gitignore/.gitignore | 1 | ||||
-rw-r--r-- | tests/specs/fmt/gitignore/__test__.jsonc | 6 | ||||
-rw-r--r-- | tests/specs/fmt/gitignore/dist/file1.js | 6 | ||||
-rw-r--r-- | tests/specs/fmt/gitignore/expected.out | 10 | ||||
-rw-r--r-- | tests/specs/fmt/gitignore/file2.ts | 3 | ||||
-rw-r--r-- | tests/specs/lint/gitignore/.gitignore | 1 | ||||
-rw-r--r-- | tests/specs/lint/gitignore/__test__.jsonc | 5 | ||||
-rw-r--r-- | tests/specs/lint/gitignore/dist/file1.js | 3 | ||||
-rw-r--r-- | tests/specs/lint/gitignore/expected.out | 12 | ||||
-rw-r--r-- | tests/specs/lint/gitignore/file2.ts | 6 |
10 files changed, 53 insertions, 0 deletions
diff --git a/tests/specs/fmt/gitignore/.gitignore b/tests/specs/fmt/gitignore/.gitignore new file mode 100644 index 000000000..838458f20 --- /dev/null +++ b/tests/specs/fmt/gitignore/.gitignore @@ -0,0 +1 @@ +/dist/
\ No newline at end of file diff --git a/tests/specs/fmt/gitignore/__test__.jsonc b/tests/specs/fmt/gitignore/__test__.jsonc new file mode 100644 index 000000000..94804c3fe --- /dev/null +++ b/tests/specs/fmt/gitignore/__test__.jsonc @@ -0,0 +1,6 @@ +{ + "tempDir": true, + "args": "fmt --check", + "output": "expected.out", + "exitCode": 1 +} diff --git a/tests/specs/fmt/gitignore/dist/file1.js b/tests/specs/fmt/gitignore/dist/file1.js new file mode 100644 index 000000000..3ecf5aa6a --- /dev/null +++ b/tests/specs/fmt/gitignore/dist/file1.js @@ -0,0 +1,6 @@ +// This file is in `.gitignore` simulating that it's generated by a build tool +// and should not be linted +function foo( ) { + console.log( "hello") + } +
\ No newline at end of file diff --git a/tests/specs/fmt/gitignore/expected.out b/tests/specs/fmt/gitignore/expected.out new file mode 100644 index 000000000..73568ff3a --- /dev/null +++ b/tests/specs/fmt/gitignore/expected.out @@ -0,0 +1,10 @@ + +from [WILDCARD]file2.ts: +1 | -function foo( ): any { +1 | +function foo(): any { +2 | - console.log( "hello") +2 | + console.log("hello"); +3 | - } +3 | +} + +error: Found 1 not formatted file in 1 file diff --git a/tests/specs/fmt/gitignore/file2.ts b/tests/specs/fmt/gitignore/file2.ts new file mode 100644 index 000000000..0e5fdd36d --- /dev/null +++ b/tests/specs/fmt/gitignore/file2.ts @@ -0,0 +1,3 @@ +function foo( ): any { + console.log( "hello") + } diff --git a/tests/specs/lint/gitignore/.gitignore b/tests/specs/lint/gitignore/.gitignore new file mode 100644 index 000000000..838458f20 --- /dev/null +++ b/tests/specs/lint/gitignore/.gitignore @@ -0,0 +1 @@ +/dist/
\ No newline at end of file diff --git a/tests/specs/lint/gitignore/__test__.jsonc b/tests/specs/lint/gitignore/__test__.jsonc new file mode 100644 index 000000000..e777fb1c1 --- /dev/null +++ b/tests/specs/lint/gitignore/__test__.jsonc @@ -0,0 +1,5 @@ +{ + "args": "lint", + "output": "expected.out", + "exitCode": 1 +} diff --git a/tests/specs/lint/gitignore/dist/file1.js b/tests/specs/lint/gitignore/dist/file1.js new file mode 100644 index 000000000..669c1e2c8 --- /dev/null +++ b/tests/specs/lint/gitignore/dist/file1.js @@ -0,0 +1,3 @@ +// This file is in `.gitignore` simulating that it's generated by a build tool +// and should not be linted +while (false) {} diff --git a/tests/specs/lint/gitignore/expected.out b/tests/specs/lint/gitignore/expected.out new file mode 100644 index 000000000..8024b51d1 --- /dev/null +++ b/tests/specs/lint/gitignore/expected.out @@ -0,0 +1,12 @@ +error[no-empty]: Empty block statement + --> [WILDCARD]file2.ts:3:14 + | +3 | } catch (_e) {} + | ^^ + = hint: Add code or comment to the empty block + + docs: https://lint.deno.land/rules/no-empty + + +Found 1 problem +Checked 1 file diff --git a/tests/specs/lint/gitignore/file2.ts b/tests/specs/lint/gitignore/file2.ts new file mode 100644 index 000000000..73c612c35 --- /dev/null +++ b/tests/specs/lint/gitignore/file2.ts @@ -0,0 +1,6 @@ +try { + await Deno.open("./some/file.txt"); +} catch (_e) {} + +// deno-lint-ignore no-explicit-any +function _foo(): any {} |