diff options
Diffstat (limited to 'devtools/docs/contributor/index.md')
-rw-r--r-- | devtools/docs/contributor/index.md | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/devtools/docs/contributor/index.md b/devtools/docs/contributor/index.md new file mode 100644 index 0000000000..1c57cbb5e0 --- /dev/null +++ b/devtools/docs/contributor/index.md @@ -0,0 +1,66 @@ +# Devtools + +* [Getting started](getting-started/README.md) + * [Get a Bugzilla account](getting-started/bugzilla.md) + * [Create a development profile](getting-started/development-profiles.md) +* [Contributing](./contributing.md) + * [Find bugs to work on](./contributing/find-bugs.md) + * [How to fix a bug](./contributing/fixing-bugs.md) + * [Code reviews](./contributing/code-reviews.md) + * [Set up for code reviews](./contributing/code-reviews-setup.md) + * [Find a reviewer](./contributing/code-reviews-find-reviewer.md) + * [Send your code for review](./contributing/making-prs.md) + * [Reviews checklist](./contributing/code-reviews-checklist.md) + * [Landing code](./contributing/landing-code.md) + * [Levelling up](./contributing/levelling-up.md) + * [Coding standards](./contributing/coding-standards.md) + * [JavaScript](./contributing/javascript.md) + * [ESLint](./contributing/eslint.md) + * [CSS](./contributing/css.md) + * [Filing good bugs](./contributing/filing-good-bugs.md) + * [Investigating performance issues](./contributing/performance.md) + * [Writing efficient React code](./contributing/react-performance-tips.md) +* [Automated tests](tests/README.md) + * Running tests + * [`xpcshell`](tests/xpcshell.md) + * [Chrome mochitests](tests/mochitest-chrome.md) + * [DevTools mochitests](tests/mochitest-devtools.md) + * [Node tests](tests/node-tests.md) + * [Writing tests](tests/writing-tests.md) + * [Debugging intermittent failures](tests/debugging-intermittents.md) + * [Performance tests overview](tests/performance-tests-overview.md) + * [DAMP Performance tests](tests/performance-tests-damp.md) + * [Writing a new test](tests/writing-perf-tests.md) + * [Example](tests/writing-perf-tests-example.md) + * [Advanced tips](tests/writing-perf-tests-tips.md) +* [Files and directories](files/README.md) + * [Adding New Files](files/adding-files.md) +* [Tool Architectures](tools/tools.md) + * [Inspector](tools/inspector.md) + * [Panel Architecture](tools/inspector-panel.md) + * [Highlighters](tools/highlighters.md) + * [Memory](tools/memory-panel.md) + * [Debugger](tools/debugger-panel.md) + * [Responsive Design Mode](tools/responsive-design-mode.md) + * [Console](tools/console-panel.md) + * [Storage](tools/storage.md) +* [Frontend](frontend/frontend.md) + * [Panel SVGs](frontend/svgs.md) + * [React](frontend/react.md) + * [Guidelines](frontend/react-guidelines.md) + * [Redux](frontend/redux.md) + * [Guidelines](frontend/redux-guidelines.md) + * [Telemetry](frontend/telemetry.md) + * [Content Security Policy](frontend/csp.md) +* [Backend](backend/backend.md) + * [Remote Debugging Protocol](backend/protocol.md) + * [Client API](backend/client-api.md) + * [Debugger API](backend/debugger-api.md) + * [Backward Compatibility](backend/backward-compatibility.md) + * Actors + * [Actors Organization](backend/actor-hierarchy.md) + * [Handling Multi-Processes in Actors](backend/actor-e10s-handling.md) + * [Writing Actors With protocol.js](backend/protocol.js.md) + * [Registering A New Actor](backend/actor-registration.md) + * [Actor Best Practices](backend/actor-best-practices.md) +* [Preferences](preferences.md) |