Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 56cd1844 authored by Nicolas Gelot's avatar Nicolas Gelot
Browse files

add new UI based on svelte and tailwindcss

parent 7db26c07
Loading
Loading
Loading
Loading
+20 −0
Original line number Diff line number Diff line
module.exports = {
	root: true,
	parser: '@typescript-eslint/parser',
	extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'prettier'],
	plugins: ['svelte3', '@typescript-eslint'],
	ignorePatterns: ['*.cjs'],
	overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
	settings: {
		'svelte3/typescript': () => require('typescript')
	},
	parserOptions: {
		sourceType: 'module',
		ecmaVersion: 2019
	},
	env: {
		browser: true,
		es2017: true,
		node: true
	}
};
+4 −0
Original line number Diff line number Diff line
.DS_Store
node_modules
/.svelte-kit
/package

poc-sveltekit/.npmrc

0 → 100644
+1 −0
Original line number Diff line number Diff line
engine-strict=true
+4 −0
Original line number Diff line number Diff line
.svelte-kit/**
static/**
build/**
node_modules/**
+6 −0
Original line number Diff line number Diff line
{
	"useTabs": true,
	"singleQuote": true,
	"trailingComma": "none",
	"printWidth": 100
}
Loading