Lint the syntax of changes

This commit is contained in:
Christian Mäder 2021-02-08 11:59:57 +01:00
parent 493fc60401
commit 28e4ae44fb
7 changed files with 67 additions and 4 deletions

23
.ecrc Normal file
View file

@ -0,0 +1,23 @@
{
"Verbose": false,
"Debug": false,
"IgnoreDefaults": false,
"SpacesAftertabs": false,
"NoColor": false,
"Exclude": [
"LICENSE",
"\\.initializers",
"\\.vscode"
],
"AllowedContentTypes": [],
"PassedFiles": [],
"Disable": {
// set these options to true to disable specific checks
"EndOfLine": false,
"Indentation": false,
"InsertFinalNewline": false,
"TrimTrailingWhitespace": false,
"IndentSize": true,
"MaxLineLength": false
}
}