-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: use default prettier options for trailing commas and quotes
- Loading branch information
Frazer Smith
committed
Dec 28, 2020
1 parent
bbdeb60
commit b8e791d
Showing
11 changed files
with
461 additions
and
465 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,35 @@ | ||
module.exports = { | ||
env: { | ||
es2021: true, | ||
node: true | ||
node: true, | ||
}, | ||
extends: [ | ||
'airbnb-base', | ||
'plugin:promise/recommended', | ||
'plugin:jest/recommended', | ||
'plugin:jsdoc/recommended', | ||
'plugin:security/recommended', | ||
'prettier' | ||
"airbnb-base", | ||
"plugin:promise/recommended", | ||
"plugin:jest/recommended", | ||
"plugin:jsdoc/recommended", | ||
"plugin:security/recommended", | ||
"prettier", | ||
], | ||
parserOptions: { | ||
sourceType: 'module', | ||
sourceType: "module", | ||
ecmaFeatures: { | ||
impliedStrict: true | ||
} | ||
impliedStrict: true, | ||
}, | ||
}, | ||
plugins: ['import', 'jest', 'jsdoc', 'json', 'promise', 'security'], | ||
plugins: ["import", "jest", "jsdoc", "json", "promise", "security"], | ||
root: true, | ||
rules: { | ||
'import/no-extraneous-dependencies': 'error', | ||
'no-console': 'off', | ||
'no-multiple-empty-lines': [ | ||
'error', | ||
"import/no-extraneous-dependencies": "error", | ||
"no-console": "off", | ||
"no-multiple-empty-lines": [ | ||
"error", | ||
{ | ||
max: 1 | ||
} | ||
max: 1, | ||
}, | ||
], | ||
'prefer-destructuring': 'off', | ||
'promise/prefer-await-to-callbacks': 'warn', | ||
'promise/prefer-await-to-then': 'warn' | ||
} | ||
"prefer-destructuring": "off", | ||
"promise/prefer-await-to-callbacks": "warn", | ||
"promise/prefer-await-to-then": "warn", | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: npm | ||
directory: '/' | ||
directory: "/" | ||
schedule: | ||
interval: monthly | ||
open-pull-requests-limit: 99 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.