-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #664 from nextcloud/chore/noid/rootSPDXFiles
Further spdx files
- Loading branch information
Showing
6 changed files
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# .editorconfig | ||
|
||
# see http://EditorConfig.org | ||
|
||
# SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors | ||
# SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
# This is the file in the root of the project. | ||
# For sub folders you can have other files that override only some settings. | ||
# For these, this settings should be false. | ||
root=true | ||
|
||
[*] | ||
max_line_length=120 | ||
# use spaces, not tabs. | ||
indent_style=space | ||
indent_size=4 | ||
|
||
[*.yml] | ||
max_line_length=150 | ||
|
||
charset=utf-8 | ||
|
||
# Trimming is good for consistency | ||
trim_trailing_whitespace=true | ||
# I've seen cases where a missing new_line was ignored on *nix systems. | ||
# Never again with this setting! | ||
insert_final_newline=true | ||
|
||
[*.properties] | ||
# Exception for Java properties files should be encoded latin1 (aka iso8859-1) | ||
charset=latin1 | ||
|
||
[*.{cmd,bat}] | ||
# batch files on Windows should stay with CRLF | ||
end_of_line=crlf | ||
|
||
[*.md] | ||
trim_trailing_whitespace=false | ||
|
||
[.drone.yml] | ||
indent_size=2 | ||
|
||
[*.{kt,kts}] | ||
# IDE does not follow this Ktlint rule strictly, but the default ordering is pretty good anyway, so let's ditch it | ||
ktlint_standard_import-ordering = disabled | ||
ij_kotlin_allow_trailing_comma = false | ||
ij_kotlin_allow_trailing_comma_on_call_site = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
/* | ||
* Nextcloud Android Single-Sign-On Library | ||
* | ||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors | ||
* SPDX-License-Identifier: GPL-3.0-or-later | ||
*/ | ||
include ':lib' | ||
include ':sample' |