Skip to content

mortnod/mittnord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

a69b0b8 · Apr 29, 2025
Apr 29, 2025
Apr 2, 2025
Apr 29, 2025
Mar 10, 2025
Apr 29, 2025
Apr 22, 2025
Apr 22, 2025
Apr 22, 2025
Feb 17, 2025
Mar 10, 2025
Aug 28, 2020
Aug 28, 2020
Mar 3, 2025
Feb 16, 2025
Feb 16, 2025
Apr 22, 2025
Apr 29, 2025
Mar 10, 2025
Mar 9, 2021
Apr 29, 2025

Repository files navigation

Getting started

  1. Clone project
  2. Run yarn
  3. Copy the .env.local.template to .env.local
  4. Run yarn dev to spin up a local web server

Setting up linting

This repo uses Prettier to automatically improve the formatting of files when you save a file. The setup is a bit different for every editor, so see Prettier's Editor Integration to get instructions on how to activate it for your favorite editor.

Visual Studio Code:

Create .vscode/settings.json and paste the following:

{
  // Activate auto-formatting for all supported files
  "editor.formatOnSave": true,

  // Make sure Prettier is set as default formatter
  "editor.defaultFormatter": "esbenp.prettier-vscode",

  // Fix ESLint, Stylelint and TSLint errors on save
  "editor.codeActionsOnSave": {
    // For ESLint
    "source.fixAll.eslint": true,
    // For TSLint
    "source.fixAll.tslint": true
  },

  // Don't use built in CSS validation.
  // Stylelint will handle the validation.
  "css.validate": false,
  "javascript.validate.enable": false
}

Releases

No releases published

Packages

No packages published