Skip to content

Commit

Permalink
Add project config files
Browse files Browse the repository at this point in the history
  • Loading branch information
kt-std committed May 12, 2021
1 parent d744ed7 commit 4d978ce
Show file tree
Hide file tree
Showing 7 changed files with 22,895 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.git
/.vscode
/.idea
/.cache
/.history
/dist
node_modules
.DS_Store
DS_Store?
21 changes: 21 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
module.exports = {
env: {
es6: true,
browser: true,
node: true,
},
extends: [],
plugins: ['import', 'prettier'],
parser: '@babel/eslint-parser',
parserOptions: {
ecmaVersion: 6,
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
rules: {
'prettier/prettier': ['error'],
'no-console': ['error', { allow: ['warn', 'error'] }],
},
};
25 changes: 25 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
## IDE specific
.idea/
.DS_Store
DS_Store?
.vscode/

## Chores
.eslintcache

## Building
node_modules/
dist/
.cache
.history
npm-debug.log*
yarn-debug.log*
yarn-error.log*

## Other
Desktop.ini
Thumbs.db
._*
tmp/

assets/
9 changes: 9 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/.git
/.vscode
/.idea
/.cache
/.history
/dist
node_modules
.DS_Store
DS_Store?
Loading

0 comments on commit 4d978ce

Please sign in to comment.