forked from dequelabs/axe-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
style: prettier for formatting JSON, MD, JS and TS files (dequelabs#1229
) This PR does the below: - Put `prettier` to work for `json, md, js, ts` files. - Remove usage of `grunt-markdownlint`. Main changes are here - https://github.com/dequelabs/axe-core/compare/prettier-update?expand=1#diff-b9cfc7f2cdf78a7f4b91a753d10865a2R68 Closes issue: NA ## Reviewer checks **Required fields, to be filled out by PR reviewer(s)** - [x] Follows the commit message policy, appropriate for next version - [x] Has documentation updated, a DU ticket, or requires no documentation change - [x] Includes new tests, or was unnecessary - [x] Code is reviewed for security by: @WilcoFiers
- Loading branch information
1 parent
2a6fedf
commit 05e4f82
Showing
245 changed files
with
6,231 additions
and
6,087 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 @@ | ||
node_modules/ |
Large diffs are not rendered by default.
Oops, something went wrong.
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
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,46 +1,40 @@ | ||
{ | ||
"name": "axe-core", | ||
"version": "3.1.2", | ||
"contributors": [ | ||
{ | ||
"name": "David Sturley", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Dylan Barrell", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Wilco Fiers", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Dian Fay", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Marcy Sutton", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dequelabs/axe-core.git" | ||
}, | ||
"main": "axe.js", | ||
"typings": "axe.d.ts", | ||
"license": "MPL-2.0", | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"test", | ||
"build", | ||
"typings" | ||
], | ||
"devDependencies": {} | ||
"name": "axe-core", | ||
"version": "3.1.2", | ||
"contributors": [ | ||
{ | ||
"name": "David Sturley", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Dylan Barrell", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Wilco Fiers", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Dian Fay", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
}, | ||
{ | ||
"name": "Marcy Sutton", | ||
"organization": "Deque Systems, Inc.", | ||
"url": "http://deque.com/" | ||
} | ||
], | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dequelabs/axe-core.git" | ||
}, | ||
"main": "axe.js", | ||
"typings": "axe.d.ts", | ||
"license": "MPL-2.0", | ||
"ignore": ["**/.*", "node_modules", "test", "build", "typings"], | ||
"devDependencies": {} | ||
} |
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.