Skip to content

Commit

Permalink
Merge pull request #6 from AstroCB/typescript-migration
Browse files Browse the repository at this point in the history
Migrate BotCore to TypeScript
  • Loading branch information
AstroCB authored Mar 17, 2021
2 parents 965b75e + 6115548 commit 9f575d3
Show file tree
Hide file tree
Showing 30 changed files with 10,415 additions and 1,095 deletions.
36 changes: 36 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"env": {
"node": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"rules": {
"indent": [
"error",
4
],
"linebreak-style": [
"error",
"unix"
],
"quotes": [
"error",
"double"
],
"semi": [
"error",
"always"
]
}
}
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docs/* linguist-generated
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
node_modules/
node_modules/
dist/
Loading

0 comments on commit 9f575d3

Please sign in to comment.