Skip to content

Commit

Permalink
nmpz: Implement nmpz bot
Browse files Browse the repository at this point in the history
  • Loading branch information
sh-mug committed Oct 22, 2024
1 parent 96f0c69 commit fbbccb0
Show file tree
Hide file tree
Showing 5 changed files with 413 additions and 0 deletions.
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 fbbccb0

Please sign in to comment.