forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into tm/cancel-expired-tasks-on-hung-tm
* master: (33 commits) [Security Solution][Case] Fix patch cases integration test with alerts (elastic#88311) [Security Solutions][Detection Engine] Removes duplicate API calls (elastic#88420) Fix log msg (elastic#88370) [Test] Add tag cloud visualization to dashboard in functional test for reporting (elastic#87600) removing kibana-core-ui from codeowners (elastic#88111) [Alerting] Migrate Event Log plugin to TS project references (elastic#81557) [Maps] fix zooming while drawing shape filter logs errors in console (elastic#88413) Porting fixes 1 (elastic#88477) [APM] Explicitly set environment for cross-service links (elastic#87481) chore(NA): remove mocha junit ci integrations (elastic#88129) [APM] Only display relevant sections for rum agent in service overview (elastic#88410) [Enterprise Search] Automatically mock shared logic files (elastic#88494) [APM] Disable Create custom link button on Transaction details page for read-only users [Docs] clean-up vega map reference documenation (elastic#88487) [Security Solution] Fix Timeline event details layout (elastic#88377) Change DELETE to POST for _bulk_delete to avoid incompatibility issues (elastic#87914) [Monitoring] Change cloud messaging on no data page (elastic#88375) [Uptime] clear ping state when PingList component in unmounted (elastic#88321) [APM] Consistent terminology for latency and throughput (elastic#88452) fix copy (elastic#88481) ...
- Loading branch information
Showing
446 changed files
with
6,696 additions
and
4,699 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
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
Validating CODEOWNERS rules …
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,2 @@ | ||
# use stylelint | ||
*.scss |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
x-pack/plugins/canvas/shareable_runtime/**/*.s+(a|c)ss | ||
build | ||
target |
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,84 @@ | ||
plugins: | ||
- stylelint-scss | ||
rules: | ||
color-no-invalid-hex: true | ||
function-calc-no-invalid: true | ||
string-no-newline: true | ||
unit-no-unknown: true | ||
property-no-unknown: | ||
- true | ||
# Used in css modules | ||
- ignoreProperties: | ||
- composes | ||
block-no-empty: true | ||
selector-pseudo-class-no-unknown: | ||
- true | ||
# Used in css modules | ||
- ignorePseudoClasses: | ||
- local | ||
- global | ||
selector-pseudo-element-no-unknown: true | ||
media-feature-name-no-unknown: true | ||
at-rule-no-unknown: | ||
- true | ||
# Sass related mixins | ||
- ignoreAtRules: | ||
- include | ||
- mixin | ||
- if | ||
- else | ||
- each | ||
- extend | ||
- function | ||
- return | ||
- for | ||
comment-no-empty: true | ||
no-duplicate-at-import-rules: true | ||
no-duplicate-selectors: true | ||
no-extra-semicolons: true | ||
alpha-value-notation: number | ||
color-named: never | ||
length-zero-no-unit: true | ||
no-eol-whitespace: true | ||
max-empty-lines: 1 | ||
# no-descending-specificity: true | ||
number-leading-zero: never | ||
color-hex-case: upper | ||
string-quotes: single | ||
indentation: 2 | ||
declaration-block-no-duplicate-properties: | ||
- true | ||
# We use some rare duplicate property values for browser variance | ||
- ignoreProperties: | ||
- font-size | ||
- word-break | ||
- composes | ||
- filter | ||
- background | ||
- width | ||
- transition | ||
- display | ||
|
||
# ($var / 2) rather than ($var/2) | ||
function-calc-no-unspaced-operator: true | ||
|
||
# something { not something{ | ||
block-opening-brace-space-before: always | ||
|
||
# TODO: # Allows input[type=search] | ||
selector-no-qualifying-type: | ||
- true | ||
- ignore: | ||
- attribute | ||
|
||
# Put a line-break between sections of CSS, but allow quicky one-liners for legibility | ||
block-closing-brace-newline-after: | ||
- always-multi-line | ||
- ignoreAtRules: | ||
- if | ||
- else | ||
|
||
# camelCase mixin, function, and variable names | ||
scss/at-mixin-pattern: "^[a-z][a-zA-Z0-9]+$" | ||
scss/at-function-pattern: "^[a-z][a-zA-Z0-9]+$" | ||
scss/dollar-variable-pattern: "^[a-z][a-zA-Z0-9]+$" |
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
Oops, something went wrong.