-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
016fb2f [DevTools] Add Debugger.setBlackboxPatterns protocol method 066ae58 DevTools: Add a few more chromecast ids to the blacklist 15ddd9e DevTools: Fix annotation typo landed in cl/1907263002 35e1747 [DevTools] JSONView parsing smarter 738ee02 Update styling for rendering drawer panel d9fd81c DevTools: ConsolePanel should delegate focus() to ConsoleView. ecfee1c DevTools: Fix assorted JavaScript style issues. c332cca DevTools: Introduce eslint configuration. 3b23c18 DevTools: remove WebInspector.WorkerRuntime.FuturePort method ef46133 Devtools: Custom properties with colors should have a color swatch 46ae7ec DevTools: cleanup a batch of eslint style errors f4d96ef Update styles for network conditions drawer panel fb7310b Timeline: cleanup unused code 14ba56d DevTools: Rename ProfileDataGrid files 360fc8b Timeline: remove multipleTimelineViews experiment 168ca46 DevTools: Support Sampling Heap Profiler in DevTools eee43ed DevTools: add "search in folder" context menu item for folders in source navigator 684b5e0 DevTools: propogate ResolveVariableNames experiment from hidden to visible 23889d6 DevTools: rename totalSize to selfSize in sampling heap profiler protocol. 553a654 DevTools: Refactor profile trees: rename totalTime->total selfTime->self 72c64fc Add device frame svgs to devtools gypi 5e56139 DevTools: pretty-print HTML 02fb0e3 Expose SPDY pushes in DevTools 7935b35 DevTools: extract CPU profile independent part of CPUProfileNode. 5acdfaa DevTools: introduce the bypass service worker checkbox. 3e443a2 [DevTools] Initial implementation for an overflow option for displaying a device art outline in emulation mode. 1b00494 Revert of Devtools: Cut color picker off at bottom instead of the top (patchset #1 id:1 of https://codereview.chromium.org/1816933002/ ) 8c93cca [DevTools] Remove network headers filter experiment. bc577d1 [DevTools] Fix console-xpath.html test b9a34f4 [DevTools] Add sorting to all tabs in network git-subtree-dir: resources/unpacked/devtools git-subtree-split: 016fb2f
- Loading branch information
Showing
152 changed files
with
3,985 additions
and
1,629 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
end_of_line = lf | ||
charset = utf-8 | ||
trim_trailing_whitespace = true | ||
insert_final_newline = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
diff/diff_match_patch.js | ||
cm_modes/ | ||
cm/ | ||
acorn/ | ||
protocol_externs.js |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,124 @@ | ||
module.exports = { | ||
"root": true, | ||
|
||
"env": { | ||
"browser": true, | ||
"es6": true | ||
}, | ||
|
||
/** | ||
* ESLint rules | ||
* | ||
* All available rules: http://eslint.org/docs/rules/ | ||
* | ||
* Rules take the following form: | ||
* "rule-name", [severity, { opts }] | ||
* Severity: 2 == error, 1 == warning, 0 == off. | ||
*/ | ||
"rules": { | ||
|
||
/** | ||
* Enforced rules | ||
*/ | ||
|
||
// syntax preferences | ||
"quotes": [2, "double", { | ||
"avoidEscape": true, | ||
"allowTemplateLiterals": true | ||
}], | ||
"comma-style": [2, "last"], | ||
"wrap-iife": [2, "inside"], | ||
"yoda": [2, "never"], | ||
"spaced-comment": [2, "always", { | ||
"markers": ["*"] | ||
}], | ||
"arrow-body-style": [2, "as-needed"], | ||
"accessor-pairs": [2, { | ||
"getWithoutSet": false, | ||
"setWithoutGet": false | ||
}], | ||
"handle-callback-err": 2, | ||
"id-blacklist": 2, | ||
"id-match": 2, | ||
"max-nested-callbacks": 2, | ||
|
||
// anti-patterns | ||
"no-with": 2, | ||
"no-multi-str": 2, | ||
"no-caller": 2, | ||
"no-implicit-coercion": [2, { | ||
"boolean": false, | ||
"number": false, | ||
"string": false | ||
}], | ||
"no-implied-eval": 2, | ||
"no-label-var": 2, | ||
"no-new-object": 2, | ||
"no-octal-escape": 2, | ||
"no-self-compare": 2, | ||
"no-shadow-restricted-names": 2, | ||
|
||
// es2015 features | ||
"no-useless-constructor": 2, | ||
"require-yield": 2, | ||
"yield-star-spacing": 2, | ||
"sort-imports": 2, | ||
"template-curly-spacing": [2, "never"], | ||
|
||
// spacing details | ||
"space-infix-ops": 2, | ||
"space-in-parens": [2, "never"], | ||
"space-before-function-paren": [ 2, "never" ], | ||
"no-whitespace-before-property": 2, | ||
"space-unary-ops": [2, { | ||
"words": false, | ||
"nonwords": false | ||
}], | ||
"keyword-spacing": [2,{ | ||
"overrides": { | ||
"if": {"after": true}, | ||
"else": {"after": true}, | ||
"for": {"after": true}, | ||
"while": {"after": true}, | ||
"do": {"after": true}, | ||
"switch": {"after": true}, | ||
"return": {"after": true} | ||
} | ||
}], | ||
"arrow-spacing": [ | ||
2, | ||
{ | ||
"after": true, | ||
"before": true | ||
} | ||
], | ||
|
||
// file whitespace | ||
"no-multiple-empty-lines": 2, | ||
"no-mixed-spaces-and-tabs": 2, | ||
"no-trailing-spaces": 2, | ||
"eol-last": 2, | ||
"linebreak-style": [ 2, "unix" ], | ||
|
||
|
||
/** | ||
* Disabled, aspirational rules | ||
*/ | ||
|
||
// brace-style is disabled, as eslint cannot enforce 1tbs as default, but allman for functions | ||
"brace-style": [0, "allman", { "allowSingleLine": true }], | ||
|
||
// key-spacing is disabled, as some objects use value-aligned spacing, some not. | ||
"key-spacing": [0, { | ||
"beforeColon": false, | ||
"afterColon": true, | ||
"align": "value" | ||
}], | ||
// quote-props is diabled, as property quoting styles are too varied to enforce. | ||
"quote-props": [0, "as-needed"], | ||
|
||
// no-implicit-globals will prevent accidental globals | ||
"no-implicit-globals": [0] | ||
|
||
} | ||
}; |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -781,4 +781,4 @@ WebInspector.AnimationTimeline.ButtonProvider.prototype = { | |
{ | ||
return this._button; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.