Skip to content

Commit

Permalink
Format .eslintrc.js, .prettierrc.js
Browse files Browse the repository at this point in the history
  • Loading branch information
draperunner committed Jan 14, 2021
1 parent 70cdc1b commit bf55aa5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 13 deletions.
12 changes: 3 additions & 9 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,11 @@ module.exports = {
env: {
node: true,
},
plugins: [
'@typescript-eslint',
'prettier',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
plugins: ['@typescript-eslint', 'prettier'],
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended'],
rules: {
'@typescript-eslint/array-type': ['error', { default: 'array-simple' }],
'@typescript-eslint/member-delimiter-style': 'off',
'prettier/prettier': 'error',
}
},
}
8 changes: 4 additions & 4 deletions .prettierrc.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
"trailingComma": "all",
"tabWidth": 4,
"semi": false,
"singleQuote": true
trailingComma: 'all',
tabWidth: 4,
semi: false,
singleQuote: true,
}

0 comments on commit bf55aa5

Please sign in to comment.