Skip to content

Commit

Permalink
added eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
Jin IGARASHI committed Jul 18, 2020
1 parent 8ab04ca commit a698068
Show file tree
Hide file tree
Showing 6 changed files with 933 additions and 91 deletions.
29 changes: 29 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
{
"extends": [
"eslint:recommended",
"plugin:prettier/recommended"
],
"plugins": [
"@typescript-eslint"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
},
"env": {
"browser": false,
"node": true,
"es6": true
},
"globals": {},
"rules": {
"prettier/prettier": [
"error",
{
"singleQuote": true,
"trailingComma": "es5"
}
]
}
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
es6/
test/tiles
.vscode

# Logs
logs
Expand Down
Loading

0 comments on commit a698068

Please sign in to comment.