Skip to content

Commit

Permalink
feat(2151)!: helm-release-v12.1.0 (#240)
Browse files Browse the repository at this point in the history
- updates to dependencies
- added lint alias
- fixed lint issues

BREAKING CHANGE: Moved @mojaloop/* imports to peerDependencies. Ensure you import these by the upstream service.
  • Loading branch information
mdebarros authored May 14, 2021
1 parent 292d8ef commit 3f5e3dc
Show file tree
Hide file tree
Showing 6 changed files with 1,366 additions and 1,159 deletions.
38 changes: 12 additions & 26 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,35 +1,21 @@
module.exports = {
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
parser: '@typescript-eslint/parser', // Specifies the ESLint parser
extends: [
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'prettier/@typescript-eslint', // Uses eslint-config-prettier to disable ESLint rules from @typescript-eslint/eslint-plugin that would conflict with prettier
'plugin:prettier/recommended', // Enables eslint-plugin-prettier and displays prettier errors as ESLint errors. Make sure this is always the last configuration in the extends array.,
'standard'
'plugin:@typescript-eslint/recommended', // Uses the recommended rules from the @typescript-eslint/eslint-plugin
'plugin:prettier/recommended'
],
parserOptions: {
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
},
rules: {
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-var-requires': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'indent': [
2,
2
],
'quotes': [
2,
'single'
],
'linebreak-style': [
2,
'unix'
],
'semi': [
2,
'never'
]
indent: [2, 2],
quotes: [2, 'single'],
'linebreak-style': [2, 'unix'],
semi: [2, 'never']
},
overrides: [
{
Expand All @@ -38,6 +24,6 @@ module.exports = {
rules: {
'@typescript-eslint/explicit-function-return-type': 'off'
}
},
],
};
}
]
}
Loading

0 comments on commit 3f5e3dc

Please sign in to comment.