File tree Expand file tree Collapse file tree 9 files changed +114
-2
lines changed Expand file tree Collapse file tree 9 files changed +114
-2
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ here="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
1818
1919function replace_acceptable_years() {
2020 # this needs to replace all acceptable forms with 'YEARS'
21- sed -e ' s/20[12][78901 ]-20[12][89012 ]/YEARS/' -e ' s/20[12][89012 ]/YEARS/'
21+ sed -e ' s/20[12][0123456789 ]-20[12][0123456789 ]/YEARS/' -e ' s/20[12][0123456789 ]/YEARS/'
2222}
2323
2424printf " => Checking for unacceptable language... "
103103 \( \! -path ' ./docker/*' -a \
104104 \( \! -path ' ./dist/*' -a \
105105 \( \! -path ' ./assets/*' -a \
106- \( " ${matching_files[@]} " \) -a \
106+ \( " ${matching_files[@]} " \) \
107107 \) \) \) \) \) \) \)
108108
109109 if [[ " $language " = bash ]]; then
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216import * as readline from "readline" ;
317import { Readable } from "stream" ;
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as fs from "fs" ;
216import * as net from "net" ;
317import { Readable } from "stream" ;
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216
317/**
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216
317/**
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2022-2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216import { FolderContext } from "../FolderContext" ;
317import { WorkspaceContext } from "../WorkspaceContext" ;
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216import { ITestRunState } from "../../../src/TestExplorer/TestParsers/TestRunState" ;
317
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216import * as assert from "assert" ;
317import { beforeEach } from "mocha" ;
Original file line number Diff line number Diff line change 1+ //===----------------------------------------------------------------------===//
2+ //
3+ // This source file is part of the VSCode Swift open source project
4+ //
5+ // Copyright (c) 2024 the VSCode Swift project authors
6+ // Licensed under Apache License v2.0
7+ //
8+ // See LICENSE.txt for license information
9+ // See CONTRIBUTORS.txt for the list of VSCode Swift project authors
10+ //
11+ // SPDX-License-Identifier: Apache-2.0
12+ //
13+ //===----------------------------------------------------------------------===//
14+
115import * as vscode from "vscode" ;
216import * as assert from "assert" ;
317import { reduceTestItemChildren } from "../../../src/TestExplorer/TestUtils" ;
You can’t perform that action at this time.
0 commit comments