Skip to content

Commit

Permalink
Bootstrap Landing Page
Browse files Browse the repository at this point in the history
  • Loading branch information
angelogulina committed May 1, 2021
1 parent 4770e62 commit 47a6f46
Show file tree
Hide file tree
Showing 24 changed files with 7,344 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
node_modules
dist/
41 changes: 41 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
module.exports = {
root: true,
parserOptions: {
ecmaVersion: 2020,
sourceType: 'module',
},
settings: {
// 'svelte3/typescript': require('typescript'),
// ignore style tags in Svelte because of Tailwind CSS
// See https://github.com/sveltejs/eslint-plugin-svelte3/issues/70
'svelte3/ignore-styles': () => true,
},
env: {
browser: true,
amd: true,
node: true,
},
extends: ['eslint:recommended', 'plugin:prettier/recommended'],
overrides: [
{
files: ['*.svelte'],
processor: 'svelte3/svelte3',
},
],
plugins: ['svelte3'],
ignorePatterns: ['node_modules'],
rules: {
'prettier/prettier': 2,
'no-unused-vars': 0,
'sort-imports': [
1,
{
ignoreCase: true,
ignoreDeclarationSort: false,
ignoreMemberSort: false,
memberSyntaxSortOrder: ['none', 'all', 'multiple', 'single'],
allowSeparatedGroups: false,
},
],
},
}
Loading

0 comments on commit 47a6f46

Please sign in to comment.