File tree Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Expand file tree Collapse file tree 3 files changed +13
-4
lines changed Original file line number Diff line number Diff line change 11root : true
22extends : xo
3- installedESLint : true
43env :
54 node : true
65 es6 : true
76parserOptions :
8- ecmaVersion : 6
7+ ecmaVersion : 8
98 sourceType : module
9+ impliedStrict : true
1010rules :
1111 brace-style :
1212 - error
1919 - error
2020 - multi-line
2121 - consistent
22+ function-paren-newline :
23+ - warn
24+ - consistent
2225 indent :
2326 - error
2427 - 4
3538 no-implicit-coercion :
3639 - error
3740 - allow : ["!!"]
41+ no-multi-spaces :
42+ - error
43+ - ignoreEOLComments : true
3844 no-negated-condition : off
3945 no-use-before-define :
4046 - error
4349 no-unused-vars :
4450 - error
4551 - argsIgnorePattern : " ^_"
52+ padded-blocks :
53+ - warn
54+ - classes : always
4655 object-property-newline :
4756 - error
4857 - allowMultiplePropertiesPerLine : true
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ class Bootstrapper {
1616
1717 _registerProviders ( context ) {
1818 const disposable = this . _vscode . workspace . registerTextDocumentContentProvider (
19- this . _extensionScheme , this . _contentProvider ) ;
19+ this . _extensionScheme , this . _contentProvider ) ;
2020 context . subscriptions . push ( disposable ) ;
2121 }
2222
Original file line number Diff line number Diff line change 1- //
1+ /* eslint-disable capitalized-comments * /
22// PLEASE DO NOT MODIFY / DELETE UNLESS YOU KNOW WHAT YOU ARE DOING
33//
44// This file is providing the test runner to use when running extension tests.
You can’t perform that action at this time.
0 commit comments