Skip to content

Commit

Permalink
feat: media elements arise 🌱
Browse files Browse the repository at this point in the history
  • Loading branch information
luwes committed Apr 28, 2024
0 parents commit 5303770
Show file tree
Hide file tree
Showing 123 changed files with 17,200 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.DS_Store
node_modules/
.turbo/
coverage/
dist/
12 changes: 12 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"printWidth": 120,
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"quoteProps": "as-needed",
"jsxSingleQuote": false,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always"
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# media-elements

17 changes: 17 additions & 0 deletions eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
export default {
"root": true,
"globals": {
"globalThis": "writable"
},
"env": {
"browser": true,
"es6": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "module"
}
};
Loading

0 comments on commit 5303770

Please sign in to comment.