Skip to content

Commit 0580a63

Browse files
feat: update fuse3 to 3.18.1-1
1 parent 3e3cf5a commit 0580a63

File tree

2,402 files changed

+400248
-424158
lines changed

Some content is hidden

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

2,402 files changed

+400248
-424158
lines changed

.clang-format

Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
1+
# SPDX-License-Identifier: GPL-2.0
2+
#
3+
# clang-format configuration file. Intended for clang-format >= 11.
4+
#
5+
# For more information, see:
6+
#
7+
# Documentation/process/clang-format.rst
8+
# https://clang.llvm.org/docs/ClangFormat.html
9+
# https://clang.llvm.org/docs/ClangFormatStyleOptions.html
10+
#
11+
---
12+
AccessModifierOffset: -4
13+
AlignAfterOpenBracket: Align
14+
AlignConsecutiveAssignments: false
15+
AlignConsecutiveDeclarations: false
16+
AlignEscapedNewlines: Left
17+
AlignOperands: true
18+
AlignTrailingComments: false
19+
AllowAllParametersOfDeclarationOnNextLine: false
20+
AllowShortBlocksOnASingleLine: false
21+
AllowShortCaseLabelsOnASingleLine: false
22+
AllowShortFunctionsOnASingleLine: None
23+
AllowShortIfStatementsOnASingleLine: false
24+
AllowShortLoopsOnASingleLine: false
25+
AlwaysBreakAfterDefinitionReturnType: None
26+
AlwaysBreakAfterReturnType: None
27+
AlwaysBreakBeforeMultilineStrings: false
28+
AlwaysBreakTemplateDeclarations: false
29+
BinPackArguments: true
30+
BinPackParameters: true
31+
BraceWrapping:
32+
AfterClass: false
33+
AfterControlStatement: false
34+
AfterEnum: false
35+
AfterFunction: true
36+
AfterNamespace: true
37+
AfterObjCDeclaration: false
38+
AfterStruct: false
39+
AfterUnion: false
40+
AfterExternBlock: false
41+
BeforeCatch: false
42+
BeforeElse: false
43+
IndentBraces: false
44+
SplitEmptyFunction: true
45+
SplitEmptyRecord: true
46+
SplitEmptyNamespace: true
47+
BreakBeforeBinaryOperators: None
48+
BreakBeforeBraces: Custom
49+
BreakBeforeInheritanceComma: false
50+
BreakBeforeTernaryOperators: false
51+
BreakConstructorInitializersBeforeComma: false
52+
BreakConstructorInitializers: BeforeComma
53+
BreakAfterJavaFieldAnnotations: false
54+
BreakStringLiterals: false
55+
ColumnLimit: 80
56+
CommentPragmas: '^ IWYU pragma:'
57+
CompactNamespaces: false
58+
ConstructorInitializerAllOnOneLineOrOnePerLine: false
59+
ConstructorInitializerIndentWidth: 8
60+
ContinuationIndentWidth: 8
61+
Cpp11BracedListStyle: false
62+
DerivePointerAlignment: false
63+
DisableFormat: false
64+
ExperimentalAutoDetectBinPacking: false
65+
FixNamespaceComments: false
66+
67+
IncludeBlocks: Preserve
68+
IncludeCategories:
69+
- Regex: '.*'
70+
Priority: 1
71+
IncludeIsMainRegex: '(Test)?$'
72+
IndentCaseLabels: false
73+
IndentGotoLabels: false
74+
IndentPPDirectives: None
75+
IndentWidth: 8
76+
IndentWrappedFunctionNames: false
77+
JavaScriptQuotes: Leave
78+
JavaScriptWrapImports: true
79+
KeepEmptyLinesAtTheStartOfBlocks: false
80+
MacroBlockBegin: ''
81+
MacroBlockEnd: ''
82+
MaxEmptyLinesToKeep: 1
83+
NamespaceIndentation: None
84+
ObjCBinPackProtocolList: Auto
85+
ObjCBlockIndentWidth: 8
86+
ObjCSpaceAfterProperty: true
87+
ObjCSpaceBeforeProtocolList: true
88+
89+
# Taken from git's rules
90+
PenaltyBreakAssignment: 10
91+
PenaltyBreakBeforeFirstCallParameter: 30
92+
PenaltyBreakComment: 10
93+
PenaltyBreakFirstLessLess: 0
94+
PenaltyBreakString: 10
95+
PenaltyExcessCharacter: 100
96+
PenaltyReturnTypeOnItsOwnLine: 60
97+
98+
PointerAlignment: Right
99+
ReflowComments: false
100+
SortIncludes: false
101+
SortUsingDeclarations: false
102+
SpaceAfterCStyleCast: false
103+
SpaceAfterTemplateKeyword: true
104+
SpaceBeforeAssignmentOperators: true
105+
SpaceBeforeCtorInitializerColon: true
106+
SpaceBeforeInheritanceColon: true
107+
SpaceBeforeParens: ControlStatementsExceptForEachMacros
108+
SpaceBeforeRangeBasedForLoopColon: true
109+
SpaceInEmptyParentheses: false
110+
SpacesBeforeTrailingComments: 1
111+
SpacesInAngles: false
112+
SpacesInContainerLiterals: false
113+
SpacesInCStyleCastParentheses: false
114+
SpacesInParentheses: false
115+
SpacesInSquareBrackets: false
116+
Standard: Cpp03
117+
TabWidth: 8
118+
UseTab: Always
119+
...

.codespellrc

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[codespell]
2+
skip = .git,*.pdf,*.svg,AUTHORS
3+
4+
# The following strings shouldn't actually be accepted, but they're wrongly
5+
# identified as words and there is currently no way to exclude them on
6+
# a by-line basis (https://github.com/codespell-project/codespell/pull/2400).
7+
# Therefore, pretend that they are correctly spelled words:
8+
# - alse: used in regex
9+
# - siz: wanted short
10+
# - fiter: variable
11+
# - re-used: intentional hyphenation
12+
# - re-using: intentional hyphenation
13+
ignore-words-list = alse,siz,fiter,re-used,re-using

.dir-locals.el

Lines changed: 62 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,64 @@
11
((python-mode . ((indent-tabs-mode . nil)))
2-
(autoconf-mode . ((indent-tabs-mode . t)))
3-
(c++-mode . ((c-file-style . "k&r")
4-
(indent-tabs-mode . nil)
5-
(c-basic-offset . 4)
6-
(c-file-offsets .
7-
((block-close . 0)
8-
(brace-list-close . 0)
9-
(brace-list-entry . 0)
10-
(brace-list-intro . +)
11-
(case-label . 0)
12-
(class-close . 0)
13-
(defun-block-intro . +)
14-
(defun-close . 0)
15-
(defun-open . 0)
16-
(else-clause . 0)
17-
(inclass . +)
18-
(label . 0)
19-
(statement . 0)
20-
(statement-block-intro . +)
21-
(statement-case-intro . +)
22-
(statement-cont . +)
23-
(substatement . +)
24-
(topmost-intro . 0)))))
25-
(c-mode . ((c-file-style . "stroustrup")
26-
(indent-tabs-mode . t)
27-
(tab-width . 8)
2+
(c++-mode . ((c-file-style . "linux-kernel")
3+
(c-basic-offset . 8)
4+
(c-label-minimum-indentation . 0)
5+
(c-offsets-alist . (
6+
(arglist-close . c-lineup-arglist-tabs-only)
7+
(arglist-cont-nonempty .
8+
(c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
9+
(arglist-intro . +)
10+
(brace-list-intro . +)
11+
(c . c-lineup-C-comments)
12+
(case-label . 0)
13+
(comment-intro . c-lineup-comment)
14+
(cpp-define-intro . +)
15+
(cpp-macro . -1000)
16+
(cpp-macro-cont . +)
17+
(defun-block-intro . +)
18+
(else-clause . 0)
19+
(func-decl-cont . +)
20+
(inclass . +)
21+
(inher-cont . c-lineup-multi-inher)
22+
(knr-argdecl-intro . 0)
23+
(label . -1000)
24+
(statement . 0)
25+
(statement-block-intro . +)
26+
(statement-case-intro . +)
27+
(statement-cont . +)
28+
(substatement . +)
29+
))
30+
(indent-tabs-mode . t)
31+
(show-trailing-whitespace . t)
32+
))
33+
(c-mode . ((c-file-style . "linux-kernel")
2834
(c-basic-offset . 8)
29-
(c-file-offsets .
30-
((block-close . 0)
31-
(brace-list-close . 0)
32-
(brace-list-entry . 0)
33-
(brace-list-intro . +)
34-
(case-label . 0)
35-
(class-close . 0)
36-
(defun-block-intro . +)
37-
(defun-close . 0)
38-
(defun-open . 0)
39-
(else-clause . 0)
40-
(inclass . +)
41-
(label . 0)
42-
(statement . 0)
43-
(statement-block-intro . +)
44-
(statement-case-intro . +)
45-
(statement-cont . +)
46-
(substatement . +)
47-
(topmost-intro . 0))))))
35+
(c-label-minimum-indentation . 0)
36+
(c-offsets-alist . (
37+
(arglist-close . c-lineup-arglist-tabs-only)
38+
(arglist-cont-nonempty .
39+
(c-lineup-gcc-asm-reg c-lineup-arglist-tabs-only))
40+
(arglist-intro . +)
41+
(brace-list-intro . +)
42+
(c . c-lineup-C-comments)
43+
(case-label . 0)
44+
(comment-intro . c-lineup-comment)
45+
(cpp-define-intro . +)
46+
(cpp-macro . -1000)
47+
(cpp-macro-cont . +)
48+
(defun-block-intro . +)
49+
(else-clause . 0)
50+
(func-decl-cont . +)
51+
(inclass . +)
52+
(inher-cont . c-lineup-multi-inher)
53+
(knr-argdecl-intro . 0)
54+
(label . -1000)
55+
(statement . 0)
56+
(statement-block-intro . +)
57+
(statement-case-intro . +)
58+
(statement-cont . +)
59+
(substatement . +)
60+
))
61+
(indent-tabs-mode . t)
62+
(show-trailing-whitespace . t)
63+
))
64+
)

0 commit comments

Comments
 (0)