mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-03-22 09:59:25 +00:00
Established new code style and auto-formatting rules.
This commit is contained in:
parent
e922c026a9
commit
fc53e73703
7
.editorconfig
Normal file
7
.editorconfig
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
# top-most EditorConfig file
|
||||||
|
root = true
|
||||||
|
|
||||||
|
# Unix-style newlines with a newline ending every file
|
||||||
|
[*]
|
||||||
|
end_of_line = lf
|
||||||
|
insert_final_newline = true
|
1
.gitattributes
vendored
Normal file
1
.gitattributes
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
* text=auto eol=lf
|
21
.prettierrc.js
Normal file
21
.prettierrc.js
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
/**
|
||||||
|
* Configuration for JSON file formatting.
|
||||||
|
*/
|
||||||
|
module.exports = {
|
||||||
|
// Line width before Prettier tries to add new lines.
|
||||||
|
printWidth: 80,
|
||||||
|
|
||||||
|
// Indent with 2 spaces.
|
||||||
|
tabs: false,
|
||||||
|
useTabs: false,
|
||||||
|
tabWidth: 2,
|
||||||
|
|
||||||
|
// Use double quotes.
|
||||||
|
singleQuote: false,
|
||||||
|
quoteProps: "preserve",
|
||||||
|
parser: "json",
|
||||||
|
|
||||||
|
bracketSpacing: true, // Spacing between brackets in object literals.
|
||||||
|
trailingComma: "none", // No trailing commas.
|
||||||
|
semi: false, // No semicolons at ends of statements.
|
||||||
|
};
|
9
.vscode/extensions.json
vendored
9
.vscode/extensions.json
vendored
|
@ -1,8 +1,9 @@
|
||||||
{
|
{
|
||||||
"recommendations": [
|
"recommendations": [
|
||||||
"nadako.vshaxe",
|
"nadako.vshaxe", // Basic Haxe integration
|
||||||
"wiggin77.codedox",
|
"wiggin77.codedox", // Haxe documentation
|
||||||
"vshaxe.hxcpp-debugger",
|
"vshaxe.hxcpp-debugger", // CPP debugging
|
||||||
"openfl.lime-vscode-extension"
|
"openfl.lime-vscode-extension", // Lime integration
|
||||||
|
"esbenp.prettier-vscode", // JSON formatting
|
||||||
]
|
]
|
||||||
}
|
}
|
19
.vscode/launch.json
vendored
19
.vscode/launch.json
vendored
|
@ -2,18 +2,13 @@
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
{
|
{
|
||||||
// Launch in native/CPP
|
// Launch in native/CPP on Windows/OSX/Linux
|
||||||
"name": "Lime",
|
"name": "Lime",
|
||||||
"type": "lime",
|
"type": "lime",
|
||||||
"request": "launch"
|
"request": "launch"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
// Evaluate macros with debugging enabled
|
// Launch in browser
|
||||||
"name": "Haxe Eval",
|
|
||||||
"type": "haxe-eval",
|
|
||||||
"request": "launch"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "HTML5 Debug",
|
"name": "HTML5 Debug",
|
||||||
"type": "chrome",
|
"type": "chrome",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
@ -23,11 +18,11 @@
|
||||||
"preLaunchTask": "debug: html"
|
"preLaunchTask": "debug: html"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "Mac (Debug)",
|
// Performs a build for debugging macros
|
||||||
"type": "hxcpp",
|
// Debugging is attached on the compilation rather than the game itself
|
||||||
"request": "launch",
|
"name": "Haxe Eval",
|
||||||
"program": "${workspaceRoot}/export/debug/macos/bin/Funkin.app/Contents/MacOS/Funkin",
|
"type": "haxe-eval",
|
||||||
"preLaunchTask": "debug: mac"
|
"request": "launch"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
32
CODESTYLE.md
Normal file
32
CODESTYLE.md
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
# Code Style Guide
|
||||||
|
|
||||||
|
Code style is enforced using Visual Studio Code extensions.
|
||||||
|
|
||||||
|
## .hx
|
||||||
|
Formatting is handled by the `nadako.vshaxe` extension, which includes Haxe Formatter.
|
||||||
|
Haxe Formatter automatically resolves issues such as intentation style and line breaks, and can be configured in `hxformat.json`.
|
||||||
|
|
||||||
|
Code Quality is handled by the `vshaxe.haxe-checkstyle` extension, which includes Haxe Checkstyle.
|
||||||
|
|
||||||
|
### Haxe Checkstyle Notes
|
||||||
|
* Checks can be escalated to display as different serverities in the Problems window.
|
||||||
|
* Checks can be disabled by setting the severity to `IGNORE`.
|
||||||
|
* `IndentationCharacter` checks what is used to indent, `Indentation` checks how deep the intentation is.
|
||||||
|
* `CommentedOutCode` check is in place because old code should be retrieved via Git history.
|
||||||
|
* TODO items:
|
||||||
|
- Reconfigure `MethodLength`
|
||||||
|
- Reconfigure `CyclomaticComplexity`
|
||||||
|
- Re-enable `MagicNumber`
|
||||||
|
- Re-configure `NestedControlFlow`
|
||||||
|
- Re-configure `NestedIfDepth`
|
||||||
|
- Figure out something for `Trace`
|
||||||
|
- Fix bug and enable `DocCommentStyle`
|
||||||
|
|
||||||
|
## .json
|
||||||
|
Formatting is handled by the `esbenp.prettier-vscode` extension, which includes Prettier.
|
||||||
|
Prettier automatically handles formatting of JSON files, and can be configured in `.prettierrc.js`.
|
||||||
|
|
||||||
|
### Prettier Notes
|
||||||
|
* Prettier will automatically attempt to place expressions on a single line if they fit, but will keep them multi-line if they are manually made multi-line.
|
||||||
|
* This means that long singleline objects are automatically expanded, and short multiline objects aren't automatically collapsed.
|
||||||
|
* You may want to use regex replacement to manually remove the first newline in short multi-line objects to convince Prettier to collapse them.
|
661
checkstyle.json
Normal file
661
checkstyle.json
Normal file
|
@ -0,0 +1,661 @@
|
||||||
|
{
|
||||||
|
"extendsConfigPath": "",
|
||||||
|
"defineCombinations": [],
|
||||||
|
"defaultSeverity": "INFO",
|
||||||
|
"baseDefines": [],
|
||||||
|
"version": 1,
|
||||||
|
"exclude": {},
|
||||||
|
"checks": [
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "Anonymous"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"spaceBefore": false,
|
||||||
|
"spaceInside": false
|
||||||
|
},
|
||||||
|
"type": "ArrayAccess"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "ArrayLiteral"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"allowSingleArgParens": false,
|
||||||
|
"allowReturn": false,
|
||||||
|
"allowFunction": false,
|
||||||
|
"allowCurlyBody": false
|
||||||
|
},
|
||||||
|
"type": "ArrowFunction"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"avoidIdentifiers": []
|
||||||
|
},
|
||||||
|
"type": "AvoidIdentifier"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "AvoidStarImport"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "AvoidTernaryOperator"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "BlockBreakingConditional"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"format": "^(e|t|ex|[a-z][a-z][a-zA-Z]+)$"
|
||||||
|
},
|
||||||
|
"type": "CatchParameterName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"thresholdSimilar": 120,
|
||||||
|
"severityIdentical": "WARNING",
|
||||||
|
"thresholdIdentical": 60
|
||||||
|
},
|
||||||
|
"type": "CodeSimilarity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "CommentedOutCode"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"policy": "aligned",
|
||||||
|
"allowSingleline": true,
|
||||||
|
"severity": "INFO"
|
||||||
|
},
|
||||||
|
"type": "ConditionalCompilation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^[A-Z][A-Z0-9]*(_[A-Z0-9_]+)*$",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "ConstantName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"thresholds": [
|
||||||
|
{
|
||||||
|
"complexity": 20,
|
||||||
|
"severity": "WARNING"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"complexity": 25,
|
||||||
|
"severity": "ERROR"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "CyclomaticComplexity"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "DefaultComesLast"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"lineStyle": "onestar",
|
||||||
|
"startStyle": "twostars",
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "DocCommentStyle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "Dynamic"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "ERegLiteral"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [
|
||||||
|
"CLASS_DEF",
|
||||||
|
"ENUM_DEF",
|
||||||
|
"ABSTRACT_DEF",
|
||||||
|
"TYPEDEF_DEF",
|
||||||
|
"INTERFACE_DEF",
|
||||||
|
"OBJECT_DECL",
|
||||||
|
"FUNCTION",
|
||||||
|
"FOR",
|
||||||
|
"IF",
|
||||||
|
"WHILE",
|
||||||
|
"SWITCH",
|
||||||
|
"TRY",
|
||||||
|
"CATCH"
|
||||||
|
],
|
||||||
|
"option": "empty"
|
||||||
|
},
|
||||||
|
"type": "EmptyBlock"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"requireEmptyLineAfterPackage": true,
|
||||||
|
"requireEmptyLineAfterInterface": true,
|
||||||
|
"requireEmptyLineAfterAbstract": true,
|
||||||
|
"allowEmptyLineAfterSingleLineComment": true,
|
||||||
|
"max": 1,
|
||||||
|
"requireEmptyLineAfterClass": true,
|
||||||
|
"allowEmptyLineAfterMultiLineComment": true
|
||||||
|
},
|
||||||
|
"type": "EmptyLines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"enforceEmptyPackage": true
|
||||||
|
},
|
||||||
|
"type": "EmptyPackage"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"none": [],
|
||||||
|
"upto": [],
|
||||||
|
"defaultPolicy": "upto",
|
||||||
|
"exact": [],
|
||||||
|
"max": 1,
|
||||||
|
"ignore": [],
|
||||||
|
"atleast": [],
|
||||||
|
"skipSingleLineTypes": true
|
||||||
|
},
|
||||||
|
"type": "ExtendedEmptyLines"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"requireParams": true,
|
||||||
|
"fieldType": "BOTH",
|
||||||
|
"requireReturn": true,
|
||||||
|
"ignoreOverride": true,
|
||||||
|
"tokens": [
|
||||||
|
"ABSTRACT_DEF",
|
||||||
|
"CLASS_DEF",
|
||||||
|
"ENUM_DEF",
|
||||||
|
"INTERFACE_DEF",
|
||||||
|
"TYPEDEF_DEF"
|
||||||
|
],
|
||||||
|
"modifier": "PUBLIC",
|
||||||
|
"excludeNames": ["new", "toString"]
|
||||||
|
},
|
||||||
|
"type": "FieldDocComment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 1000,
|
||||||
|
"ignoreEmptyLines": true
|
||||||
|
},
|
||||||
|
"type": "FileLength"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "Final"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"option": "upperCase"
|
||||||
|
},
|
||||||
|
"type": "HexadecimalLiteral"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreSetter": true,
|
||||||
|
"ignoreFormat": "^(main|run)$",
|
||||||
|
"ignoreConstructorParameter": true
|
||||||
|
},
|
||||||
|
"type": "HiddenField"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"character": " "
|
||||||
|
},
|
||||||
|
"type": "Indentation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"character": "space",
|
||||||
|
"severity": "INFO",
|
||||||
|
"ignorePattern": "^$"
|
||||||
|
},
|
||||||
|
"type": "IndentationCharacter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreReturnAssignments": false
|
||||||
|
},
|
||||||
|
"type": "InnerAssignment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"allowProperties": false,
|
||||||
|
"allowMarkerInterfaces": true
|
||||||
|
},
|
||||||
|
"type": "Interface"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "LeftCurly"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 160,
|
||||||
|
"ignorePattern": "^$"
|
||||||
|
},
|
||||||
|
"type": "LineLength"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"listeners": ["addEventListener", "addListener", "on", "once"],
|
||||||
|
"format": "^_?[a-z][a-zA-Z0-9]*$"
|
||||||
|
},
|
||||||
|
"type": "ListenerName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^[a-z][a-zA-Z0-9]*$",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "LocalVariableName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreNumbers": [-1, 0, 1, 2],
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "MagicNumber"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^[a-z][a-zA-Z0-9]*$",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "MemberName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"maxPrivate": 100,
|
||||||
|
"maxPublic": 100,
|
||||||
|
"maxTotal": 100
|
||||||
|
},
|
||||||
|
"type": "MethodCount"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 50,
|
||||||
|
"ignoreEmptyLines": true,
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "MethodLength"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^[a-z][a-zA-Z0-9]*$",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "MethodName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"modifiers": [
|
||||||
|
"MACRO",
|
||||||
|
"OVERRIDE",
|
||||||
|
"PUBLIC_PRIVATE",
|
||||||
|
"STATIC",
|
||||||
|
"INLINE",
|
||||||
|
"DYNAMIC",
|
||||||
|
"FINAL"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"type": "ModifierOrder"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"minLength": 2,
|
||||||
|
"ignore": "^\\s+$",
|
||||||
|
"allowDuplicates": 5
|
||||||
|
},
|
||||||
|
"type": "MultipleStringLiterals"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "MultipleVariableDeclarations"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"allowSingleLineStatement": true,
|
||||||
|
"tokens": ["FOR", "IF", "ELSE_IF", "WHILE", "DO_WHILE"]
|
||||||
|
},
|
||||||
|
"type": "NeedBraces"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 3
|
||||||
|
},
|
||||||
|
"type": "NestedControlFlow"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 1
|
||||||
|
},
|
||||||
|
"type": "NestedForDepth"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 1
|
||||||
|
},
|
||||||
|
"type": "NestedIfDepth"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 1
|
||||||
|
},
|
||||||
|
"type": "NestedTryDepth"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"option": "questionMark"
|
||||||
|
},
|
||||||
|
"type": "NullableParameter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"newFunctionTypePolicy": "around",
|
||||||
|
"ternaryOpPolicy": "around",
|
||||||
|
"unaryOpPolicy": "none",
|
||||||
|
"oldFunctionTypePolicy": "around",
|
||||||
|
"boolOpPolicy": "around",
|
||||||
|
"intervalOpPolicy": "none",
|
||||||
|
"assignOpPolicy": "around",
|
||||||
|
"bitwiseOpPolicy": "around",
|
||||||
|
"arithmeticOpPolicy": "around",
|
||||||
|
"compareOpPolicy": "around",
|
||||||
|
"arrowPolicy": "around",
|
||||||
|
"arrowFunctionPolicy": "around"
|
||||||
|
},
|
||||||
|
"type": "OperatorWhitespace"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [
|
||||||
|
"=",
|
||||||
|
"+",
|
||||||
|
"-",
|
||||||
|
"*",
|
||||||
|
"/",
|
||||||
|
"%",
|
||||||
|
">",
|
||||||
|
"<",
|
||||||
|
">=",
|
||||||
|
"<=",
|
||||||
|
"==",
|
||||||
|
"!=",
|
||||||
|
"&",
|
||||||
|
"|",
|
||||||
|
"^",
|
||||||
|
"&&",
|
||||||
|
"||",
|
||||||
|
"<<",
|
||||||
|
">>",
|
||||||
|
">>>",
|
||||||
|
"+=",
|
||||||
|
"-=",
|
||||||
|
"*=",
|
||||||
|
"/=",
|
||||||
|
"%=",
|
||||||
|
"<<=",
|
||||||
|
">>=",
|
||||||
|
">>>=",
|
||||||
|
"|=",
|
||||||
|
"&=",
|
||||||
|
"^=",
|
||||||
|
"...",
|
||||||
|
"=>",
|
||||||
|
"++",
|
||||||
|
"--"
|
||||||
|
],
|
||||||
|
"option": "eol"
|
||||||
|
},
|
||||||
|
"type": "OperatorWrap"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^(_|[a-z][a-zA-Z0-9]*$)",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "ParameterName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"max": 7,
|
||||||
|
"ignoreOverriddenMethods": false
|
||||||
|
},
|
||||||
|
"type": "ParameterNumber"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "PublicAccessor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"prohibitMeta": false
|
||||||
|
},
|
||||||
|
"type": "RedundantAccessMeta"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"prohibitMeta": false
|
||||||
|
},
|
||||||
|
"type": "RedundantAllowMeta"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"enforcePrivate": false,
|
||||||
|
"enforcePublic": true,
|
||||||
|
"enforcePublicPrivate": false
|
||||||
|
},
|
||||||
|
"type": "RedundantModifier"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"enforceReturnTypeForAnonymous": false,
|
||||||
|
"allowEmptyReturn": true,
|
||||||
|
"enforceReturnType": true
|
||||||
|
},
|
||||||
|
"type": "Return"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreFormat": "^$",
|
||||||
|
"max": 2
|
||||||
|
},
|
||||||
|
"type": "ReturnCount"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "RightCurly"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"commaPolicy": "after",
|
||||||
|
"semicolonPolicy": "after",
|
||||||
|
"allowTrailingComma": false,
|
||||||
|
"dotPolicy": "none"
|
||||||
|
},
|
||||||
|
"type": "SeparatorWhitespace"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [","],
|
||||||
|
"option": "eol"
|
||||||
|
},
|
||||||
|
"type": "SeparatorWrap"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "SimplifyBooleanExpression"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "SimplifyBooleanReturn"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"spaceIfCondition": "should",
|
||||||
|
"spaceAroundBinop": true,
|
||||||
|
"spaceForLoop": "should",
|
||||||
|
"ignoreRangeOperator": true,
|
||||||
|
"spaceWhileLoop": "should",
|
||||||
|
"spaceCatch": "should",
|
||||||
|
"spaceSwitchCase": "should",
|
||||||
|
"noSpaceAroundUnop": true
|
||||||
|
},
|
||||||
|
"type": "Spacing"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"policy": "onlySingle",
|
||||||
|
"allowException": true
|
||||||
|
},
|
||||||
|
"type": "StringLiteral"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"format": "^\\s*(TODO|FIXME|HACK|XXX|BUG)"
|
||||||
|
},
|
||||||
|
"type": "TODOComment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignorePattern": "^$"
|
||||||
|
},
|
||||||
|
"type": "TabForAligning"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "Trace"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "TrailingWhitespace"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreEnumAbstractValues": true
|
||||||
|
},
|
||||||
|
"type": "Type"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [
|
||||||
|
"ABSTRACT_DEF",
|
||||||
|
"CLASS_DEF",
|
||||||
|
"ENUM_DEF",
|
||||||
|
"INTERFACE_DEF",
|
||||||
|
"TYPEDEF_DEF"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"type": "TypeDocComment"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"ignoreExtern": true,
|
||||||
|
"format": "^[A-Z]+[a-zA-Z0-9]*$",
|
||||||
|
"tokens": []
|
||||||
|
},
|
||||||
|
"type": "TypeName"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "UnnecessaryConstructor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"moduleTypeMap": {},
|
||||||
|
"ignoreModules": []
|
||||||
|
},
|
||||||
|
"type": "UnusedImport"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {},
|
||||||
|
"type": "UnusedLocalVar"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"severity": "IGNORE"
|
||||||
|
},
|
||||||
|
"type": "VariableInitialisation"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"typeHintPolicy": "enforce_all",
|
||||||
|
"ignoreEnumAbstractValues": true
|
||||||
|
},
|
||||||
|
"type": "VarTypeHint"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [",", ";"],
|
||||||
|
"allowTrailingComma": false
|
||||||
|
},
|
||||||
|
"type": "WhitespaceAfter"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"props": {
|
||||||
|
"tokens": [
|
||||||
|
"=",
|
||||||
|
"+",
|
||||||
|
"-",
|
||||||
|
"*",
|
||||||
|
"/",
|
||||||
|
"%",
|
||||||
|
">",
|
||||||
|
"<",
|
||||||
|
">=",
|
||||||
|
"<=",
|
||||||
|
"==",
|
||||||
|
"!=",
|
||||||
|
"&",
|
||||||
|
"|",
|
||||||
|
"^",
|
||||||
|
"&&",
|
||||||
|
"||",
|
||||||
|
"<<",
|
||||||
|
">>",
|
||||||
|
">>>",
|
||||||
|
"+=",
|
||||||
|
"-=",
|
||||||
|
"*=",
|
||||||
|
"/=",
|
||||||
|
"%=",
|
||||||
|
"<<=",
|
||||||
|
">>=",
|
||||||
|
">>>=",
|
||||||
|
"|=",
|
||||||
|
"&=",
|
||||||
|
"^=",
|
||||||
|
"=>"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"type": "WhitespaceAround"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"numberOfCheckerThreads": 5
|
||||||
|
}
|
|
@ -1,19 +1,31 @@
|
||||||
{
|
{
|
||||||
"lineEnds": {
|
"disableFormatting": false,
|
||||||
"leftCurly": "both",
|
|
||||||
"rightCurly": "both",
|
|
||||||
"emptyCurly": "noBreak",
|
|
||||||
"objectLiteralCurly": {
|
|
||||||
"leftCurly": "after"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"indentation": {
|
"indentation": {
|
||||||
"character": " "
|
"character": " ",
|
||||||
|
"tabWidth": 2,
|
||||||
|
"indentCaseLabels": true
|
||||||
},
|
},
|
||||||
|
|
||||||
|
"lineEnds": {
|
||||||
|
"anonFunctionCurly": {
|
||||||
|
"emptyCurly": "break",
|
||||||
|
"leftCurly": "after",
|
||||||
|
"rightCurly": "both"
|
||||||
|
},
|
||||||
|
"leftCurly": "both",
|
||||||
|
"rightCurly": "both"
|
||||||
|
},
|
||||||
|
|
||||||
"sameLine": {
|
"sameLine": {
|
||||||
|
"ifBody": "same",
|
||||||
"ifElse": "next",
|
"ifElse": "next",
|
||||||
"doWhile": "next",
|
"doWhile": "next",
|
||||||
"tryBody": "next",
|
"tryBody": "next",
|
||||||
"tryCatch": "next"
|
"tryCatch": "next"
|
||||||
|
},
|
||||||
|
|
||||||
|
"whitespace": {
|
||||||
|
"switchPolicy": "around"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue