-
Notifications
You must be signed in to change notification settings - Fork 779
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2886 from dequelabs/release-4.2
chore(release): version 4.2.0
- Loading branch information
Showing
1,551 changed files
with
129,509 additions
and
111,079 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
**/node_modules/* | ||
**/tmp/* | ||
|
||
build/tasks/aria-supported.js | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
module.exports = { | ||
extends: ['prettier'], | ||
parserOptions: { | ||
ecmaVersion: 9 | ||
}, | ||
env: { | ||
node: true, | ||
es6: true | ||
}, | ||
globals: { | ||
axe: true | ||
}, | ||
rules: { | ||
'no-bitwise': 2, | ||
camelcase: 2, | ||
curly: 2, | ||
eqeqeq: 2, | ||
'guard-for-in': 2, | ||
'wrap-iife': [2, 'any'], | ||
'no-use-before-define': [ | ||
2, | ||
{ | ||
functions: false | ||
} | ||
], | ||
'new-cap': 2, | ||
'no-caller': 2, | ||
'no-empty': 2, | ||
'no-new': 2, | ||
'no-plusplus': 0, | ||
'no-undef': 2, | ||
'no-unused-vars': 2, | ||
strict: 0, | ||
'max-params': [2, 6], | ||
'max-depth': [2, 5], | ||
'max-len': 0, | ||
semi: 0, | ||
'no-cond-assign': 0, | ||
'no-debugger': 2, | ||
'no-eq-null': 0, | ||
'no-eval': 2, | ||
'no-unused-expressions': 0, | ||
'block-scoped-var': 0, | ||
'no-iterator': 0, | ||
'linebreak-style': 0, | ||
'no-loop-func': 0, | ||
'no-multi-str': 0, | ||
'no-proto': 0, | ||
'no-script-url': 0, | ||
'dot-notation': 2, | ||
'no-new-func': 0, | ||
'no-new-wrappers': 0, | ||
'no-restricted-syntax': [ | ||
'error', | ||
{ | ||
selector: 'MemberExpression[property.name=tagName]', | ||
message: "Don't use node.tagName, use node.nodeName instead." | ||
}, | ||
{ | ||
// node.attributes can be clobbered so is unsafe to use | ||
// @see https://github.com/dequelabs/axe-core/pull/1432 | ||
selector: | ||
'MemberExpression[object.name=node][property.name=attributes]', | ||
message: | ||
"Don't use node.attributes, use node.hasAttributes() or axe.utils.getNodeAttributes(node) instead." | ||
} | ||
] | ||
}, | ||
overrides: [ | ||
{ | ||
files: ['lib/**/*.js'], | ||
parserOptions: { | ||
sourceType: 'module' | ||
}, | ||
env: { | ||
browser: true, | ||
es6: true | ||
}, | ||
globals: { | ||
window: true, | ||
document: true | ||
}, | ||
rules: { | ||
'func-names': [2, 'as-needed'], | ||
'prefer-const': 2 | ||
} | ||
}, | ||
{ | ||
files: ['test/**/*.js'], | ||
parserOptions: { | ||
ecmaVersion: 5 | ||
}, | ||
env: { | ||
browser: true, | ||
es6: false, | ||
mocha: true | ||
}, | ||
globals: { | ||
assert: true, | ||
helpers: true, | ||
checks: true, | ||
sinon: true | ||
}, | ||
plugins: ['mocha-no-only'], | ||
rules: { | ||
'new-cap': 0, | ||
'no-use-before-define': 0, | ||
'mocha-no-only/mocha-no-only': ['error'] | ||
} | ||
} | ||
] | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,3 @@ | ||
<< Describe the changes >> | ||
|
||
Closes issue: | ||
|
||
## Reviewer checks | ||
|
||
**Required fields, to be filled out by PR reviewer(s)** | ||
|
||
- [ ] Follows the commit message policy, appropriate for next version | ||
- [ ] Code is reviewed for security |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Require that merge commits have security review performed on them. | ||
review_merges: true | ||
|
||
approve_button_tooltip: No security or PR title concerns | ||
decline_button_tooltip: Found security or PR title concerns | ||
|
||
pending_description: Pull request not yet approved for security and a correct PR title | ||
pending_summary: > | ||
Awaiting security and PR title review. To approve this pull request, please click the "Approve" button above. | ||
You may **not** review your own Pull Request. | ||
approved_description: Pull request has been reviewed and approved for security and a correct PR title | ||
approved_summary: Pull request has been approved for security and having an incorrect PR title by @${approver}. | ||
|
||
declined_description: Pull request contains security concerns or has an incorrect PR title | ||
declined_summary: Commit was reviewed and declined for security and/or an incorrect PR title by @${approver}. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.