File tree 4 files changed +16
-1
lines changed
4 files changed +16
-1
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,8 @@ module.exports = {
6
6
'eslint:recommended' ,
7
7
'plugin:eslint-plugin/recommended' ,
8
8
'plugin:node/recommended' ,
9
- ] ,
9
+ 'prettier' ,
10
+ ] ,
10
11
env : {
11
12
node : true ,
12
13
} ,
Original file line number Diff line number Diff line change
1
+ dist /
2
+ node_modules /
Original file line number Diff line number Diff line change
1
+ {
2
+ "bracketSameLine": false,
3
+ "bracketSpacing": false,
4
+ "printWidth": 100,
5
+ "tabWidth": 2,
6
+ "trailingComma": "all",
7
+ "semi": true,
8
+ "singleQuote": true
9
+ }
Original file line number Diff line number Diff line change 28
28
"test" : " mocha tests --recursive ./dist/tests/" ,
29
29
"lint" : " eslint ." ,
30
30
"lint:eslint-docs" : " update:eslint-docs --check" ,
31
+ "format" : " prettier . --write" ,
31
32
"update:eslint-docs" : " eslint-doc-generator" ,
32
33
"publish" : " yarn build; npm publish"
33
34
},
41
42
"@typescript-eslint/types" : " ^5.57.1" ,
42
43
"@typescript-eslint/utils" : " ^5.57.1" ,
43
44
"eslint" : " ^8.19.0" ,
45
+ "eslint-config-prettier" : " ^9.1.0" ,
44
46
"eslint-doc-generator" : " ^1.0.0" ,
45
47
"eslint-plugin-eslint-plugin" : " ^5.0.0" ,
46
48
"eslint-plugin-node" : " ^11.1.0" ,
47
49
"mocha" : " ^10.0.0" ,
48
50
"nodemon" : " ^2.0.22" ,
49
51
"npm-run-all" : " ^4.1.5" ,
52
+ "prettier" : " 3.3.2" ,
50
53
"typescript" : " ^5.0.4"
51
54
},
52
55
"engines" : {
You can’t perform that action at this time.
0 commit comments