Skip to content

Commit 6174f32

Browse files
author
Nathan Hawes
authored
---
yaml --- r: 344569 b: refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-18-a c: f3c0049 h: refs/heads/master i: 344567: f093dc2
1 parent daf51e9 commit 6174f32

File tree

17,322 files changed

+2686088
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

17,322 files changed

+2686088
-0
lines changed

[refs]

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1555,3 +1555,4 @@ refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-12-a: 3a9ef6856285ee00523fb68127e6c
15551555
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-13-a: 4129202343fea3c1336b9ef8a5d04d811f157663
15561556
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-15-a: bbaf282ed71cd29b86f791e773bbc62ddcd20f1c
15571557
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-16-a: afc56e5e843502c12dafd2700bf68913b7faf200
1558+
refs/tags/swift-DEVELOPMENT-SNAPSHOT-2019-09-18-a: f3c0049917a56f3c0095a9f92b5bd428f0449caf
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BasedOnStyle: LLVM
Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
;;; Directory Local Variables
2+
;;; For more information see (info "(emacs) Directory Variables")
3+
4+
((nil
5+
(eval let*
6+
((x (dir-locals-find-file default-directory))
7+
(this-directory (if (listp x) (car x) (file-name-directory x))))
8+
(unless (or (featurep 'swift-project-settings)
9+
(and (fboundp 'tramp-tramp-file-p)
10+
(tramp-tramp-file-p this-directory)))
11+
(add-to-list 'load-path
12+
(concat this-directory "utils")
13+
:append)
14+
(let ((swift-project-directory this-directory))
15+
(require 'swift-project-settings)))
16+
(set (make-local-variable 'swift-project-directory)
17+
this-directory)
18+
)
19+
(tab-width . 2)
20+
(fill-column . 80)
21+
(c-file-style . "swift"))
22+
(c++-mode
23+
(whitespace-style face lines indentation:space)
24+
(flycheck-clang-language-standard . "c++14"))
25+
(c-mode
26+
(whitespace-style face lines indentation:space))
27+
(objc-mode
28+
(whitespace-style face lines indentation:space))
29+
(prog-mode
30+
(eval add-hook 'prog-mode-hook
31+
(lambda nil
32+
(whitespace-mode 1))
33+
(not :APPEND)
34+
:BUFFER-LOCAL))
35+
(swift-mode
36+
(swift-find-executable-fn . swift-project-executable-find)
37+
(swift-syntax-check-fn . swift-project-swift-syntax-check)
38+
(whitespace-style face lines indentation:space)
39+
(swift-basic-offset . 2)
40+
(tab-always-indent . t)))
41+
42+
43+
44+
;; Local Variables:
45+
;; eval: (whitespace-mode -1)
46+
;; End:
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[flake8]
2+
ignore = W291 W504
3+
filename = *.py,
4+
./utils/80+-check,
5+
./utils/backtrace-check,
6+
./benchmark/scripts/Benchmark_Driver,
7+
./benchmark/scripts/Benchmark_DTrace.in,
8+
./benchmark/scripts/Benchmark_GuardMalloc.in,
9+
./benchmark/scripts/Benchmark_RuntimeLeaksRunner.in,
10+
./utils/build-script,
11+
./utils/check-incremental,
12+
./test/Driver/Inputs/fake-toolchain/clang++,
13+
./utils/coverage/coverage-build-db,
14+
./utils/coverage/coverage-generate-data,
15+
./utils/coverage/coverage-query-db,
16+
./utils/coverage/coverage-touch-tests,
17+
./utils/gyb,
18+
./test/Driver/Inputs/fake-toolchain/ld,
19+
./utils/line-directive,
20+
./utils/swift_build_support/tests/mock-distcc,
21+
./docs/scripts/ns-html2rst,
22+
./utils/PathSanitizingFileCheck,
23+
./utils/recursive-lipo,
24+
./utils/round-trip-syntax-test,
25+
./utils/rth,
26+
./utils/run-remote,
27+
./utils/run-test,
28+
./utils/scale-test,
29+
./utils/submit-benchmark-results,
30+
./utils/update-checkout,
31+
./utils/viewcfg,
32+
./utils/symbolicate-linux-fatal,
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!-- What's in this pull request? -->
2+
Replace this paragraph with a description of your changes and rationale. Provide links to external references/discussions if appropriate.
3+
4+
<!-- If this pull request resolves any bugs in the Swift bug tracker, provide a link: -->
5+
Resolves [SR-NNNN](https://bugs.swift.org/browse/SR-NNNN).
6+
7+
<!--
8+
Before merging this pull request, you must run the Swift continuous integration tests.
9+
For information about triggering CI builds via @swift-ci, see:
10+
https://github.com/apple/swift/blob/master/docs/ContinuousIntegration.md#swift-ci
11+
12+
Thank you for your contribution to Swift!
13+
-->
Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
#==============================================================================#
2+
# This file specifies intentionally untracked files that git should ignore.
3+
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
4+
#
5+
# This file is intentionally different from the output of `git svn show-ignore`,
6+
# as most of those are useless.
7+
#==============================================================================#
8+
9+
#==============================================================================#
10+
# File extensions to be ignored anywhere in the tree.
11+
#==============================================================================#
12+
# Temp files created by most text editors.
13+
*~
14+
# Merge files created by git.
15+
*.orig
16+
# Byte compiled Python modules.
17+
*.pyc
18+
# vim swap files
19+
.*.sw[a-z]
20+
.sw?
21+
22+
#==============================================================================#
23+
# Explicit files to ignore (only matches one).
24+
#==============================================================================#
25+
cscope.files
26+
cscope.out
27+
28+
#==============================================================================#
29+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
30+
#==============================================================================#
31+
# Generated docs
32+
docs/_build
33+
34+
# Finder metadata
35+
.DS_Store
36+
37+
# Visual Studio metadata
38+
.vs
39+
40+
#==============================================================================#
41+
# Ignore CMake temporary files
42+
#==============================================================================#
43+
CMakeCache.txt
44+
CMakeFiles
45+
.atom-build.json
46+
47+
#==============================================================================#
48+
# Ignore compile database
49+
#==============================================================================#
50+
compile_commands.json
51+
52+
# Ignore generated GYB files until we fix the workaround on Windows
53+
#==============================================================================#
54+
8
55+
4
56+
SortedCFDatabase.def
57+
htmlcov
58+
.coverage
59+
/benchmark/scripts/Benchmark_Driverc
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
Adrian-Constantin Popescu <[email protected]> <[email protected]>
2+
3+
4+
5+
Alexis Beingessner <[email protected]> <[email protected]>
6+
7+
8+
9+
Argyrios Kyrtzidis <[email protected]> <[email protected]>
10+
11+
Ben Cohen <[email protected]>
12+
13+
14+
15+
Brent Royal-Gordon <[email protected]> <[email protected]>
16+
17+
18+
19+
20+
Chris Bieneman <[email protected]>
21+
22+
23+
24+
25+
26+
codester <[email protected]> codestergit <[email protected]>
27+
28+
29+
Dante Broggi <[email protected]>
30+
31+
32+
33+
34+
35+
36+
David Rönnqvist <[email protected]>
37+
38+
39+
40+
41+
42+
43+
44+
45+
46+
Erik Eckstein <[email protected]>
47+
48+
Ewa Matejska <[email protected]>
49+
50+
51+
52+
53+
54+
55+
56+
Greg Titus <[email protected]>
57+
58+
59+
60+
61+
62+
Hitster GTD <[email protected]>
63+
64+
Ingmar Stein <[email protected]>
65+
66+
Jacob Bandes-Storch <[email protected]> <[email protected]>
67+
68+
Janosch Hildebrand <[email protected]> <[email protected]>
69+
Janosch Hildebrand <[email protected]> <[email protected]>
70+
71+
72+
73+
74+
joe DeCapo <[email protected]>
75+
76+
77+
78+
79+
80+
81+
82+
83+
Kevin Saldaña <[email protected]>
84+
Kim Topley <[email protected]>
85+
86+
87+
Kuba Mracek <[email protected]>
88+
Luiz Fernando Silva <[email protected]>
89+
90+
91+
92+
93+
94+
Max Moiseev <[email protected]>
95+
96+
97+
98+
99+
100+
101+
102+
103+
104+
Mishal Awadah <[email protected]>
105+
Mishal Shah <[email protected]>
106+
107+
108+
109+
110+
111+
112+
113+
Nicole Jacque <[email protected]>
114+
115+
116+
117+
Paweł Szot <[email protected]>
118+
119+
Pete Cooper <[email protected]>
120+
121+
122+
123+
124+
125+
126+
Ross Bayer <[email protected]>
127+
128+
129+
130+
131+
Stephen Canon <[email protected]>
132+
133+
Sukolsak Sakshuwong <[email protected]>
134+
135+
136+
137+
138+
139+
140+
141+

0 commit comments

Comments
 (0)