File tree Expand file tree Collapse file tree 5 files changed +2636
-24
lines changed Expand file tree Collapse file tree 5 files changed +2636
-24
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends": "airbnb",
3
+ "parser": "@typescript-eslint/parser",
4
+ "plugins": [
5
+ "@typescript-eslint"
6
+ ],
3
7
"parserOptions": {
4
8
"ecmaVersion": 2022
5
9
},
20
24
"arrow-parens": "off",
21
25
"global-require": "off",
22
26
"no-plusplus": "off",
23
- "comma-dangle": "off"
27
+ "comma-dangle": "off",
28
+ "quotes": ["error", "single"]
24
29
},
25
30
"ignorePatterns": [
26
31
"src/sequelize/**"
Original file line number Diff line number Diff line change 8
8
"build:tests" : " tsc -p ./tsconfig.test.json" ,
9
9
"clean" : " rimraf ./dist && rimraf ./dist.tests" ,
10
10
"predev" : " yarn run clean && yarn run build" ,
11
- "dev" : " yarn run start" ,
11
+ "dev" : " DISCORD_TOKEN=MTAxNDA3MjA2OTAyMzA4ODY1MA.G6B1UR.Rez2fWA39fjCLL8sutUWQk23Mu4e94u1y5GQnc yarn run start" ,
12
12
"start" : " node ./dist/index.js" ,
13
13
"pretest" : " yarn run clean && yarn run build:tests" ,
14
14
"test" : " mocha ./dist.tests/tests/**/**/*.test.js"
33
33
"@types/sharp" : " ^0.31.0" ,
34
34
"@types/sinon" : " ^10.0.13" ,
35
35
"@types/uuid" : " ^8.3.4" ,
36
+ "@typescript-eslint/eslint-plugin" : " ^5.38.0" ,
37
+ "@typescript-eslint/parser" : " ^5.38.0" ,
36
38
"chai" : " ^4.3.6" ,
37
- "eslint" : " ^8.23 .0" ,
39
+ "eslint" : " ^8.24 .0" ,
38
40
"eslint-config-airbnb" : " ^19.0.4" ,
39
41
"eslint-plugin-import" : " ^2.26.0" ,
40
42
"mocha" : " ^10.0.0" ,
Original file line number Diff line number Diff line change 6
6
"esModuleInterop" : true ,
7
7
"skipLibCheck" : true ,
8
8
"forceConsistentCasingInFileNames" : true ,
9
+ "removeComments" : true ,
9
10
"outDir" : " dist"
10
11
},
11
12
"include" : [" src/**/*" ],
You can’t perform that action at this time.
0 commit comments