Skip to content

Commit

Permalink
fix(eslint-plugin): fix incorrect rule name (#357)
Browse files Browse the repository at this point in the history
  • Loading branch information
claneo authored and bradzacher committed Mar 20, 2019
1 parent 6ffaa0b commit 0a5146b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin/src/rules/camelcase.ts
Expand Up @@ -6,7 +6,7 @@ type Options = util.InferOptionsTypeFromRule<typeof baseRule>;
type MessageIds = util.InferMessageIdsTypeFromRule<typeof baseRule>;

export default util.createRule<Options, MessageIds>({
name: 'ban-types',
name: 'camelcase',
meta: {
type: 'suggestion',
docs: {
Expand Down
Expand Up @@ -9,7 +9,7 @@ type Options = [
type MessageIds = 'unexpectedTypeAssertion';

export default util.createRule<Options, MessageIds>({
name: 'no-object-literal-type-assertions',
name: 'no-object-literal-type-assertion',
meta: {
type: 'problem',
docs: {
Expand Down

0 comments on commit 0a5146b

Please sign in to comment.