-
Notifications
You must be signed in to change notification settings - Fork 355
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build Script for Index of Examples: Revise coding approach (pull #1078)
* chore: Add ESLint for reference-table * chore: Minor whitespace in reference-tables.template * chore: Initial node-ify for reference-tables.js * chore: Variable naming and whitespace * chore: Use glob for file matching * chore: Use Object.getOwnPropertyNames for array sort * chore: Update output variable name * chore: Use cheerio for HTML replacement * Run example index file on new master * Regen package-lock.json
- Loading branch information
1 parent
8fdc63f
commit 342e70e
Showing
6 changed files
with
844 additions
and
623 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
{ | ||
"extends": "eslint:recommended", | ||
"env": { | ||
"node": true, | ||
"es6": true | ||
}, | ||
"rules": { | ||
"no-console": 0 | ||
} | ||
} |
Oops, something went wrong.