Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 779 Bytes

Engineering-Guidelines-030b46f2-7268-453b-a5a3-2715bea4a3f4.md

File metadata and controls

26 lines (16 loc) · 779 Bytes

Engineering Guidelines

Engineering philosophy

Summarize your team's approach to engineering here.

Notes about how the current codebase evolved.

Patterns to follow

  • List patterns that engineers should follow here.
  • You can create inline code snippets with the shortcut cmd/ctrl + e.

Code samples

Add code blocks for common snippets. Type /code and press enter. Choose the language you're using from the dropdown at the bottom right corner. Hover to copy with one click.

var a = 1;
while (a <= 10) {
    document.write(a + "<br />");
    a++;
}

Further Reading

Check out this Notion guide to learn about more ways to create content.