Skip to content

Commit

Permalink
Merge pull request #954 from tsg-ut/implement-nmpz
Browse files Browse the repository at this point in the history
nmpz: Implement nmpz bot
  • Loading branch information
sh-mug authored Oct 22, 2024
2 parents 6b2688d + 52e4898 commit eb00077
Show file tree
Hide file tree
Showing 6 changed files with 415 additions and 0 deletions.
1 change: 1 addition & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ kirafan/** @settyan117
lyrics/** @hideo54
mahjong/** @hakatashi
mail-hook/** @hakatashi
nmpz/** @sh-mug
nojoin/** @hakatashi
oauth/** @hakatashi
octas/** @Yosshi999
Expand Down
1 change: 1 addition & 0 deletions index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ const productionBots = [
'oneiromancy',
'auto-archiver',
'city-symbol',
'nmpz',
];

const developmentBots = [
Expand Down
21 changes: 21 additions & 0 deletions nmpz/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"es6": true
},
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"project": "./tsconfig.json"
},
"rules": {}
}
2 changes: 2 additions & 0 deletions nmpz/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
coordinates.db
template.html
7 changes: 7 additions & 0 deletions nmpz/.prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": true
}
Loading

0 comments on commit eb00077

Please sign in to comment.