Skip to content

Commit

Permalink
Misc IDE related configs
Browse files Browse the repository at this point in the history
- Adding .vscode to .gitignore for ignoring VS Code's configs
  (Duplicate `config.json` removed also.)
- Set ES6 as a baseline both in .jshintrc and .eslintrc.json
  • Loading branch information
shigeya committed May 18, 2021
1 parent 1a9d212 commit a530b57
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
14 changes: 14 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"env": {
"browser": true,
"es6": true,
"node": true,
"jest": true
},
"extends": [
"eslint:recommended"
],
"parserOptions": {},
"plugins": [],
"rules": {}
}
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ TAGS
config.json
node_modules
package-lock.json
config.json
.idea
*.iml
*.iml
.vscode
3 changes: 3 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"esversion": 6
}

0 comments on commit a530b57

Please sign in to comment.