Skip to content

Commit

Permalink
chore: bootstrap common project structure
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriansaliou committed Nov 10, 2024
1 parent afe89e9 commit 44aa0aa
Show file tree
Hide file tree
Showing 10 changed files with 1,628 additions and 41 deletions.
24 changes: 24 additions & 0 deletions .eslintrc.cjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module.exports = {
root: true,

env: {
browser: true,
node: true
},

parser: "vue-eslint-parser",

parserOptions: {
parser: "@typescript-eslint/parser"
},

extends: [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:vue/vue3-recommended",
"prettier"
],

plugins: ["@typescript-eslint"],
rules: {}
};
22 changes: 22 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# NPM
npm-debug.log
node_modules/
.npm

# Caches
.cache
.eslintcache

# Builds
dist

# Editor
.nova
.idea
.vscode

# macOS
.DS_Store

# Misc.
*.md
8 changes: 8 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 2,
"printWidth": 80,
"semi": true,
"singleQuote": false
}
1 change: 1 addition & 0 deletions config/common.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{}
3 changes: 3 additions & 0 deletions config/development.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"environment": "development"
}
3 changes: 3 additions & 0 deletions config/production.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"environment": "production"
}
Loading

0 comments on commit 44aa0aa

Please sign in to comment.