Skip to content

Commit

Permalink
Created the main structure of the project
Browse files Browse the repository at this point in the history
  • Loading branch information
takaneichinose committed Nov 1, 2023
1 parent b78aace commit bcf444b
Show file tree
Hide file tree
Showing 42 changed files with 3,294 additions and 2,878 deletions.
5 changes: 5 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
node_modules
.eslintrc.cjs
postcss.config.cjs
tailwind.config.cjs
vite.config.cjs
17 changes: 17 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* eslint-env node */
module.exports = {
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/strict',
'plugin:@typescript-eslint/strict-type-checked',
'plugin:@typescript-eslint/stylistic',
'prettier',
],
parser: '@typescript-eslint/parser',
plugins: ['@typescript-eslint'],
parserOptions: {
project: true,
tsconfigRootDir: __dirname,
},
root: true,
};
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Ignore artifacts:
build
coverage
node_modules
13 changes: 13 additions & 0 deletions .prettierrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/** @type {import("prettier").Config} */
const config = {
arrowParens: 'always',
endOfLine: 'lf',
printWidth: 80,
semi: true,
singleQuote: true,
tabWidth: 2,
trailingComma: 'all',
useTabs: false,
};

module.exports = config;
56 changes: 0 additions & 56 deletions DOCUMENTATION.md

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

21 changes: 0 additions & 21 deletions LICENSE.txt

This file was deleted.

39 changes: 0 additions & 39 deletions README.md

This file was deleted.

77 changes: 0 additions & 77 deletions build/gulpfile.js

This file was deleted.

96 changes: 0 additions & 96 deletions build/util.js

This file was deleted.

Loading

0 comments on commit bcf444b

Please sign in to comment.