summaryrefslogtreecommitdiff
path: root/docs/tools
AgeCommit message (Collapse)Author
2020-11-08upgrade: deno_doc, deno_lint, dprint, swc (#8292)Bartek Iwańczuk
2020-11-03build: migrate to dlint (#8176)Bartek Iwańczuk
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code.
2020-10-26Revert "feat(lint): stabilize "deno lint" subcommand (#8075)" (#8128)Bartek Iwańczuk
This reverts commit c5c48f845a4d25f064c4388fcdd4295317edf155.
2020-10-22feat(lint): stabilize "deno lint" subcommand (#8075)Bartek Iwańczuk
This commit stabilizes "deno lint" by removing the need to pass --unstable flag. --unstable is still required when using --json flag.
2020-10-21docs(tools/repl): add special variables section (#8057)Casper Beyer
2020-10-19docs(tools): add repl section (#8011)Casper Beyer
This adds a section on the repl with the keybindings that we support out of the box.
2020-09-28docs: update deno bundle output to single line (#7734)Trivikram Kamat
2020-09-27feat(fmt): Sort named import and export specifiers (#7711)David Sherret
2020-09-15docs(lint): ignore diagnostic in whole file (#7489)Bartek Iwańczuk
2020-09-13docs: manual updates for 1.4 features and changes (#7440)Luca Casonato
2020-09-11docs: move “Debugger” to “Debugging your code” in “Getting ↵tokiedokie
started” (#7421)
2020-09-09feat(fmt, lint): show number of checked files (#7312)Yusuke Tanaka
2020-09-07feat(info): Dependency count and sizes (#6786)KrisChambers
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width
2020-09-02fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319)YellowBird
2020-08-31feat(lint): Add support for reading input from stdin (#7263)Yusuke Tanaka
2020-08-29fix(lint): use recommended rules set (#7222)Yusuke Tanaka
2020-08-27fix(deno install): Strip "@..." suffixes from inferred names (#7223)Nayeem Rahman
2020-08-17typos (#7082)tokiedokie
2020-08-14docs: update VS Code debugging options for 1.47 (#6767)Connor Peet
2020-08-03Fix grammatical error in Linter documentation (#6939)Ben Stolovitz
2020-07-31feat: add $STD_VERSION replacement variable in docs (#6922)Luca Casonato
2020-07-14Use dprint for internal formatting (#6682)David Sherret
2020-07-02typo (#6598)uki00a
2020-06-12improve file_server docs (#6262)Dustin Callaway
2020-06-12docs(lint): add entry in manual (#6258)Bartek Iwańczuk
2020-06-10fixed double prompt in manual (#6230)Tomofumi Chiba
2020-06-10docs: Update debugger.md (#6219)Brian Bowman
2020-06-04deno doc docs (#5650)Matt Dumler
2020-05-26docs: update JetBrains environment support (#5877)crowlKats
2020-05-26improve docs (#5873)Robin Wieruch
2020-05-26improve docs (#5872)Robin Wieruch
2020-05-21docs: add entry for 'deno info' (#5703)Bartek Iwańczuk
2020-05-21docs: Update debugger.md (#5615)Chris Schepman
2020-05-14Fix small typo in the docs (#5310)Peter Indiola
2020-05-14Fix typos across the repo (#5295)Dante Calderón
Corrections made: * cli/js/tests/README.md:44:7: corrected "discoveres" to "discovers" * cli/js/tests/chown_test.ts:111:37: corrected "priviledge" to "privilege" * cli/worker.rs:231:56: corrected "decendants" to "descendants" * deno_typescript/lib.rs:136:50: corrected "emmited" to "emitted" * core/es_isolate.rs:492:67: corrected "registerd" to "registered" * core/isolate.rs:103:28: corrected "initalize" to "initialize" * docs/runtime.md:29:14: corrected "ect" to "etc" * docs/tools/debugger.md:122:16: corrected "implementes" to "implements" * std/encoding/_yaml/dumper/dumper_state.ts:57:63: corrected "everwhere" to "everywhere" * std/encoding/csv.ts:37:43: corrected "referal" to "referral" * std/fmt/sprintf.ts:209:20: corrected "unusuable" to "unusable" * std/fmt/README.md:21:40: corrected "Alternativly" to "Alternatively" * std/fmt/README.md:35:68: corrected "seperated" to "separated" * std/fmt/README.md:179:59: corrected "provded" to "provided" * std/mime/multipart.ts:581:46: corrected "writen" to "written" * std/path/_globrex.ts:19:52: corrected "equivelant" to "equivalent" * std/node/events_test.ts:447:9: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:475:9: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:500:29: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:530:40: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:555:9: corrected "asyncronous" to "asynchronous" * tools/deno_tcp_proxy.ts:1:42: corrected "perfromance" to "performance" * std/node/module.ts:1003:18: corrected "existend" to "existed"
2020-05-13Add allow-read to file-server debugger example (#5282)Amen
2020-05-13docs: add debugger manual (#5265)Bartek Iwańczuk
2020-05-10Docs for deno test + minor other changes (#5185)Luca Casonato
* Added fs events example. * Added docs for `deno test`. * Renamed file server example. * Unified markdown code types. * Removed plugin topics from TOC. * Fixed links.
2020-05-07fix(docs): add missing "deno run" (#5126)zjopy
2020-05-06Multi page manual (#5110)Luca Casonato