Skip to content

Commit

Permalink
Relax @typescript-eslint/naming-convention
Browse files Browse the repository at this point in the history
  • Loading branch information
ryota-ka committed Jul 13, 2021
1 parent 3cae094 commit 4a1eafa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change log

## v0.9.0

### Non-breaking changes

- Relax [`@typescript-eslint/naming-convention`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/naming-convention.md).

## v0.8.0

### Breaking changes
Expand Down
4 changes: 2 additions & 2 deletions base/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ module.exports = {
},
{
selector: 'method',
format: ['camelCase'],
format: ['camelCase', 'PascalCase'],
},
{
selector: 'parameter',
format: ['camelCase'],
format: ['camelCase', 'PascalCase'],
leadingUnderscore: 'allow',
},
{
Expand Down

0 comments on commit 4a1eafa

Please sign in to comment.