Skip to content

Commit

Permalink
Merge pull request #1256 from devule/chore/files-format-fixes
Browse files Browse the repository at this point in the history
style: fix minor formatting problems, add void to bootstrap function
  • Loading branch information
kamilmysliwiec authored Dec 27, 2022
2 parents b6428f4 + 0ec48d8 commit 341dbe4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/lib/application/files/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"target": "ES6",
"experimentalDecorators": true
"target": "ES6",
"experimentalDecorators": true
},
"exclude": [
"node_modules",
"dist"
"node_modules",
"dist"
]
}
2 changes: 1 addition & 1 deletion src/lib/application/files/ts/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir : __dirname,
tsconfigRootDir: __dirname,
sourceType: 'module',
},
plugins: ['@typescript-eslint/eslint-plugin'],
Expand Down
8 changes: 4 additions & 4 deletions src/lib/library/files/js/jsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"compilerOptions": {
"target": "ES6",
"experimentalDecorators": true
"target": "ES6",
"experimentalDecorators": true
},
"exclude": [
"node_modules"
"node_modules"
]
}
}

0 comments on commit 341dbe4

Please sign in to comment.