Skip to content
Snippets Groups Projects
Commit 98cbb2e8 authored by Trygve Jørgensen's avatar Trygve Jørgensen
Browse files

chore(prettier): define end of line char to be \n

parent 96d102b2
No related branches found
No related tags found
3 merge requests!66Final merge,!8Added test and fixed formatting config,!4Pipeline fix
Pipeline #274631 passed
...@@ -4,5 +4,6 @@ ...@@ -4,5 +4,6 @@
"tabWidth": 4, "tabWidth": 4,
"singleQuote": true, "singleQuote": true,
"printWidth": 100, "printWidth": 100,
"trailingComma": "none" "trailingComma": "none",
"endOfLine": "lf"
} }
\ No newline at end of file
// https://on.cypress.io/api
describe('Testing site navigation', () => {
it('visits the home page', () => {
cy.visit('/')
cy.contains('nav', 'Hjem')
})
})
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
<template> <template>
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
aria-hidden="true" aria-hidden="true"
role="img" role="img"
class="iconify iconify--mdi" class="iconify iconify--mdi"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment