chore(): Add bracketSpacing in code style

This commit is contained in:
Chris Daßler 2024-06-29 12:22:07 +02:00
parent e77fab3b84
commit b3b2505a97
5 changed files with 38 additions and 38 deletions

View File

@ -5,7 +5,7 @@
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": false,
"bracketSpacing": true,
"arrowParens": "always",
"endOfLine": "lf"
}

View File

@ -20,7 +20,7 @@ class PmInstall extends This {
const pmInstall = new PmInstall();
// Output: Methods of ExampleClass: [ 'methodOne', 'methodTwo' ]
// Properties of ExampleClass: [ 'propertyOne', 'propertyTwo', 'version' ] and Version: 1.1.0
pmInstall.discovery();
// pmInstall.discovery();
program
.name(this.scriptName)