Skip to content

Commit

Permalink
fix: disable @typescript-eslint/camelcase rule
Browse files Browse the repository at this point in the history
b/c many libraries accept (for example elasticsearch.js) accept only snake_case property names
  • Loading branch information
vladholubiev committed Apr 1, 2019
1 parent e7c21c1 commit 7019997
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module.exports = {
rules: {
'prettier/prettier': 'error',
'padding-line-between-statements': paddingLineBetweenStatements,
'@typescript-eslint/no-use-before-define': 0
'@typescript-eslint/no-use-before-define': 0,
'@typescript-eslint/camelcase': 0
}
};

0 comments on commit 7019997

Please sign in to comment.