-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
console: clean up styles for entry and server code (#9648)
Backports PR #9646 **Commit 1:** console: clean up styles for entry and server code Much of the code in console is original from when the project was a separate plugin and was not updated when it was ported over. Now, any code in the root of the project or in the server directory will be linted based on the global rules in Kibana. * Original sha: aa82918 * Authored by Court Ewing <[email protected]> on 2016-12-26T20:02:30Z
- Loading branch information
1 parent
00c3e1f
commit 01039f8
Showing
9 changed files
with
75 additions
and
39 deletions.
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
2
src/core_plugins/console/.eslintrc → ...core_plugins/console/api_server/.eslintrc
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
--- | ||
|
||
root: true | ||
extends: '../../../.eslintrc' | ||
extends: '../../../../.eslintrc' | ||
|
||
rules: | ||
block-scoped-var: off | ||
|
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,36 @@ | ||
--- | ||
|
||
root: true | ||
extends: '../../../../.eslintrc' | ||
|
||
rules: | ||
block-scoped-var: off | ||
camelcase: off | ||
curly: off | ||
dot-location: off | ||
dot-notation: off | ||
eqeqeq: off | ||
guard-for-in: off | ||
indent: off | ||
max-len: off | ||
new-cap: off | ||
no-caller: off | ||
no-empty: off | ||
no-extend-native: off | ||
no-loop-func: off | ||
no-multi-str: off | ||
no-nested-ternary: off | ||
no-proto: off | ||
no-sequences: off | ||
no-undef: off | ||
no-use-before-define: off | ||
one-var: off | ||
quotes: off | ||
space-before-blocks: off | ||
space-in-parens: off | ||
space-infix-ops: off | ||
semi: off | ||
strict: off | ||
wrap-iife: off | ||
no-var: off | ||
prefer-const: off |
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
4 changes: 2 additions & 2 deletions
4
src/core_plugins/console/server/__tests__/wildcard_matcher.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
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