Skip to content

Commit

Permalink
master -> main (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidcalhoun committed Aug 20, 2023
1 parent e1cbbc8 commit bbfc38d
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion lib/rules/anchor.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attributes on anchors.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/anchor.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/anchor.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/button.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attributes on buttons.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/button.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/button.md'
},
fixable: null,
schema: {
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/input.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attributes on inputs.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/input.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/input.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/onChange.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attribute data-test-id on elements with the onChange property.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/onChange.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/onChange.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/onClick.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attribute data-test-id on elements with the onClick property.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/onClick.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/onClick.md'
},
fixable: 'code',
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/onKeyDown.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attribute data-test-id on elements with the onKeyDown property.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/onKeyDown.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/onKeyDown.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/onKeyUp.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module.exports = {
description: 'Requires test attribute data-test-id on elements with the onKeyUp property.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/onKeyUp.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/onKeyUp.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion lib/rules/onSubmit.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
description: 'Requires test attribute data-test-id on elements with the onSubmit property.',
category: 'Possible Errors',
recommended: true,
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/master/docs/rules/onSubmit.md'
url: 'https://github.com/davidcalhoun/eslint-plugin-test-selectors/tree/main/docs/rules/onSubmit.md'
},
fixable: null,
schema: defaultRuleSchema
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Enforces that a `data-test-id` attribute is present on interactive DOM elements

### Example of eslint-plugin-test-selectors running in Visual Studio Code:

![Example of eslint-plugin-test-selectors running in Visual Studio Code](https://github.com/davidcalhoun/eslint-plugin-test-selectors/blob/master/vscode-test-selectors-example.png)
![Example of eslint-plugin-test-selectors running in Visual Studio Code](vscode-test-selectors-example.png)

## Selected changelog

Expand Down

0 comments on commit bbfc38d

Please sign in to comment.