and though bugs are the bane of my existence, rest assured the wretched thing will get the best of care here

...
 
Commits (4)
BOT_TOKEN=asdlaskdkasdnlkasdn
\ No newline at end of file
module.exports = {
env: {
node: true,
commonjs: true,
es2020: true,
},
extends: ['airbnb-base'],
parserOptions: {
ecmaVersion: 11,
},
rules: {},
'env': {
'commonjs': true,
'es2020': true,
'node': true
},
'extends': 'eslint:recommended',
'parserOptions': {
'ecmaVersion': 11
},
'rules': {
'indent': [
'error',
'tab'
],
'linebreak-style': [
'error',
'unix'
],
'quotes': [
'error',
'single'
],
'semi': [
'error',
'always'
]
}
};
# Node Modules
node_modules/
\ No newline at end of file
node_modules/
# tokens
.env
\ No newline at end of file
......@@ -4,7 +4,8 @@
"description": "A Discord built for the LOLs",
"main": "src/app.js",
"scripts": {
"lint": "eslint src/"
"lint": "eslint src/",
"start": "node src/app.js"
},
"author": "zeebhombal@gmail.com",
"license": "MIT",
......@@ -17,4 +18,4 @@
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
}
}
}
\ No newline at end of file
const Discord = require('discord.js');
require('dotenv').config();
const client = new Discord.Client();
client.on('message', (message) => {
console.log(message);
});
client.login(process.env.BOT_TOKEN);