-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9174b12
commit 8e39e18
Showing
40 changed files
with
595 additions
and
328 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,53 @@ | ||
{ | ||
"extends": "recommended", | ||
"rules": { | ||
"comments.ClassJavadoc": "off", | ||
"formatting.Indentation": { | ||
"spacesPerIndentLevel": 4, | ||
"severity": "info" | ||
}, | ||
"braces.ElseBlockBraces": { | ||
"enabled": false | ||
}, | ||
"braces.ForStatementBraces": { | ||
"enabled": false | ||
}, | ||
"braces.IfStatementBraces": { | ||
"enabled": false | ||
}, | ||
"braces.WhileStatementBraces": { | ||
"enabled": false | ||
}, | ||
"unused.UnusedVariable": { | ||
"ignoreVariableNames": "__" | ||
}, | ||
"size.NestedBlockDepth": { | ||
"maxNestedBlockDepth": 10 | ||
}, | ||
"size.ParameterCount": { | ||
"enabled": false | ||
}, | ||
"naming.VariableName": { | ||
"enabled": false | ||
}, | ||
"ConsecutiveBlankLines": { | ||
"enabled": false | ||
}, | ||
"CatchException": { | ||
"enabled": false | ||
}, | ||
"convention.CompileStatic": { | ||
"enabled": false | ||
}, | ||
"BlockStartsWithBlankLine": { | ||
"enabled": false | ||
}, | ||
"BlockEndsWithBlankLine": { | ||
"enabled": false | ||
}, | ||
"DuplicateStringLiteral": { | ||
"enabled": false | ||
}, | ||
"UnnecessaryReturnKeyword": "error" | ||
} | ||
} |
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,37 @@ | ||
--- | ||
|
||
# Default state for all rules | ||
default: true | ||
|
||
# Path to configuration file to extend | ||
extends: null | ||
|
||
# MD009/no-trailing-spaces : Trailing spaces : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md009.md | ||
MD009: | ||
# Spaces for line break | ||
br_spaces: 2 | ||
# Allow spaces for empty lines in list items | ||
list_item_empty_lines: false | ||
# Include unnecessary breaks | ||
strict: false | ||
|
||
# MD013/line-length : Line length : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md013.md | ||
MD013: | ||
# Number of characters | ||
line_length: 120 | ||
# Number of characters for headings | ||
heading_line_length: 80 | ||
# Number of characters for code blocks | ||
code_block_line_length: 120 | ||
# Include tables | ||
tables: false | ||
# Include headings | ||
headings: false | ||
|
||
# MD011/no-reversed-links : Reversed link syntax : https://github.com/DavidAnson/markdownlint/blob/v0.32.1/doc/md011.md | ||
MD011: true | ||
|
||
# MD012/no-multiple-blanks : Multiple consecutive blank lines | ||
MD012: | ||
# Consecutive blank lines | ||
maximum: 2 |
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,40 @@ | ||
--- | ||
|
||
extends: default | ||
ignore: | | ||
README.md | ||
LICENSE | ||
rules: | ||
braces: | ||
max-spaces-inside: 1 | ||
level: error | ||
brackets: | ||
max-spaces-inside: 1 | ||
level: error | ||
colons: | ||
max-spaces-after: -1 | ||
level: error | ||
commas: | ||
max-spaces-after: -1 | ||
level: error | ||
comments: disable | ||
comments-indentation: disable | ||
document-start: disable | ||
empty-lines: | ||
max: 2 | ||
level: error | ||
hyphens: | ||
level: error | ||
indentation: disable | ||
key-duplicates: enable | ||
line-length: | ||
max: 120 | ||
level: error | ||
new-line-at-end-of-file: disable | ||
new-lines: | ||
type: unix | ||
trailing-spaces: enable | ||
truthy: | ||
allowed-values: ['true', 'false'] # yamllint disable-line rule:truthy | ||
check-keys: true |
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,26 @@ | ||
--- | ||
name: lint | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: null | ||
pull_request: null | ||
|
||
jobs: | ||
build: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: read | ||
statuses: write | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Super-linter | ||
uses: super-linter/super-linter@v5 | ||
env: | ||
DEFAULT_BRANCH: main | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
Empty file modified
0
backup/backup_btrfs_using_snapshot/backup_btrfs_filesystem_using_snapshot.sh
100644 → 100755
Empty file.
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
Oops, something went wrong.