mirror of
https://github.com/denoland/deno.git
synced 2024-11-21 20:38:55 +00:00
Run format.py (#2950)
This commit is contained in:
parent
c8184eceb0
commit
4556a38ed9
@ -12,10 +12,7 @@
|
|||||||
"prettier/@typescript-eslint"
|
"prettier/@typescript-eslint"
|
||||||
],
|
],
|
||||||
"rules": {
|
"rules": {
|
||||||
"@typescript-eslint/array-type": [
|
"@typescript-eslint/array-type": ["error", { "default": "array-simple" }],
|
||||||
"error",
|
|
||||||
{ "default": "array-simple" }
|
|
||||||
],
|
|
||||||
"@typescript-eslint/explicit-member-accessibility": ["off"],
|
"@typescript-eslint/explicit-member-accessibility": ["off"],
|
||||||
"@typescript-eslint/no-non-null-assertion": ["off"],
|
"@typescript-eslint/no-non-null-assertion": ["off"],
|
||||||
"@typescript-eslint/no-use-before-define": ["off"],
|
"@typescript-eslint/no-use-before-define": ["off"],
|
||||||
|
@ -2,4 +2,5 @@
|
|||||||
|
|
||||||
Want to contribute to Deno? There are a few things you need to know.
|
Want to contribute to Deno? There are a few things you need to know.
|
||||||
|
|
||||||
We wrote a **[contribution guide](https://deno.land/manual.html#contributing)** to help you get started.
|
We wrote a **[contribution guide](https://deno.land/manual.html#contributing)**
|
||||||
|
to help you get started.
|
||||||
|
@ -23,7 +23,7 @@ In deno:
|
|||||||
- fix: Keep all deno_std URLs in sync (#2930)
|
- fix: Keep all deno_std URLs in sync (#2930)
|
||||||
- fix: make 'deno fmt' faster (#2928)
|
- fix: make 'deno fmt' faster (#2928)
|
||||||
- fix: panic during block_on (#2905)
|
- fix: panic during block_on (#2905)
|
||||||
- fix: panic during fetch (#2925)
|
- fix: panic during fetch (#2925)
|
||||||
- fix: path normalization in resolve_from_cwd() (#2875)
|
- fix: path normalization in resolve_from_cwd() (#2875)
|
||||||
- fix: remove deprecated Deno.platform (#2895)
|
- fix: remove deprecated Deno.platform (#2895)
|
||||||
- fix: replace bad rid panics with errors (#2870)
|
- fix: replace bad rid panics with errors (#2870)
|
||||||
@ -54,7 +54,7 @@ In deno:
|
|||||||
- fix: set/clearTimeout's params should not be bigint (#2834, #2838)
|
- fix: set/clearTimeout's params should not be bigint (#2834, #2838)
|
||||||
- fix: shared queue requires aligned buffer (#2816)
|
- fix: shared queue requires aligned buffer (#2816)
|
||||||
- refactor: Remove Node build dependency and change how internal V8 snapshots
|
- refactor: Remove Node build dependency and change how internal V8 snapshots
|
||||||
are built (#2825, #2827, #2826, #2826)
|
are built (#2825, #2827, #2826, #2826)
|
||||||
- refactor: Remove flatbuffers (#2818, #2819, #2817, #2812, #2815, #2799)
|
- refactor: Remove flatbuffers (#2818, #2819, #2817, #2812, #2815, #2799)
|
||||||
- regression: Introduce regression in fetch's Request/Response stream API to
|
- regression: Introduce regression in fetch's Request/Response stream API to
|
||||||
support larger refactor (#2826)
|
support larger refactor (#2826)
|
||||||
|
@ -1,40 +1,44 @@
|
|||||||
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
solutions = [{
|
solutions = [
|
||||||
'url':
|
{
|
||||||
'https://chromium.googlesource.com/v8/v8.git@7.9.8',
|
'url': 'https://chromium.googlesource.com/v8/v8.git@7.9.8',
|
||||||
'name': 'v8',
|
'name': 'v8',
|
||||||
'deps_file': 'DEPS',
|
'deps_file': 'DEPS',
|
||||||
'custom_deps': {
|
'custom_deps': {
|
||||||
'v8/build': None,
|
'v8/build': None,
|
||||||
'v8/third_party/catapult': None,
|
'v8/third_party/catapult': None,
|
||||||
'v8/third_party/colorama/src': None,
|
'v8/third_party/colorama/src': None,
|
||||||
'v8/testing/gmock': None,
|
'v8/testing/gmock': None,
|
||||||
'v8/tools/swarming_client': None,
|
'v8/tools/swarming_client': None,
|
||||||
'v8/tools/gyp': None,
|
'v8/tools/gyp': None,
|
||||||
'v8/third_party/instrumented_libraries': None,
|
'v8/third_party/instrumented_libraries': None,
|
||||||
'v8/third_party/android_tools': None,
|
'v8/third_party/android_tools': None,
|
||||||
'v8/third_party/depot_tools': None,
|
'v8/third_party/depot_tools': None,
|
||||||
'v8/test/wasm-js': None,
|
'v8/test/wasm-js': None,
|
||||||
'v8/test/benchmarks/data': None,
|
'v8/test/benchmarks/data': None,
|
||||||
'v8/test/mozilla/data': None,
|
'v8/test/mozilla/data': None,
|
||||||
'v8/third_party/icu': None,
|
'v8/third_party/icu': None,
|
||||||
'v8/test/test262/data': None,
|
'v8/test/test262/data': None,
|
||||||
'v8/test/test262/harness': None,
|
'v8/test/test262/harness': None,
|
||||||
'v8/tools/luci-go': None
|
'v8/tools/luci-go': None
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url':
|
||||||
|
'https://chromium.googlesource.com/chromium/tools/depot_tools@efce0d1b7657c440c90f0f4bce614b96672b9e0b',
|
||||||
|
'name':
|
||||||
|
'depot_tools'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url':
|
||||||
|
'https://chromium.googlesource.com/chromium/src/third_party/zlib@39b4a6260702da4c089eca57136abf40a39667e9',
|
||||||
|
'name':
|
||||||
|
'zlib'
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'url':
|
||||||
|
'https://github.com/cpplint/cpplint.git@a33992f68f36fcaa6d0f531a25012a4c474d3542',
|
||||||
|
'name':
|
||||||
|
'cpplint'
|
||||||
}
|
}
|
||||||
}, {
|
]
|
||||||
'url':
|
|
||||||
'https://chromium.googlesource.com/chromium/tools/depot_tools@efce0d1b7657c440c90f0f4bce614b96672b9e0b',
|
|
||||||
'name':
|
|
||||||
'depot_tools'
|
|
||||||
}, {
|
|
||||||
'url':
|
|
||||||
'https://chromium.googlesource.com/chromium/src/third_party/zlib@39b4a6260702da4c089eca57136abf40a39667e9',
|
|
||||||
'name':
|
|
||||||
'zlib'
|
|
||||||
}, {
|
|
||||||
'url':
|
|
||||||
'https://github.com/cpplint/cpplint.git@a33992f68f36fcaa6d0f531a25012a4c474d3542',
|
|
||||||
'name':
|
|
||||||
'cpplint'
|
|
||||||
}]
|
|
||||||
|
Loading…
Reference in New Issue
Block a user