Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .bowerrc

This file was deleted.

3 changes: 1 addition & 2 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@ root = true
[*]

# Change these settings to your own preference
indent_style = space
indent_size = 2
indent_style = tab

# We recommend you to keep these unchanged
end_of_line = lf
Expand Down
53 changes: 0 additions & 53 deletions .eslintrc

This file was deleted.

8 changes: 8 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"extends": "@neovici",
"rules": {
"new-cap": "off",
"valid-jsdoc": "off",
"no-cond-assign": "off"
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,5 @@ demo_components

build/
.eslintcache

/coverage
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,16 @@

# paper-autocomplete

> Autocomplete component compatible with Polymer 1.x and 2.x
> Autocomplete component compatible with Polymer 3.x

[![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/element/ellipticaljs/paper-autocomplete)

[![Sauce Test Status](https://saucelabs.com/browser-matrix/jhuesos.svg)](https://saucelabs.com/u/jhuesos)

`paper-autocomplete` extends earlier efforts such as this
[https://github.com/rodo1111/paper-input-autocomplete](https://github.com/rodo1111/paper-input-autocomplete) to provide
`paper-autocomplete` extends earlier efforts such as this
[https://github.com/rodo1111/paper-input-autocomplete](https://github.com/rodo1111/paper-input-autocomplete) to provide
keyboard support, remote binding and results scrolling.

# About Polymer 1.x and 2.x Compatibility
From version `3.x.x`, this component work with both Polymer 1.7+ or Polymer 2.0+ Please take a look to the
[MIGRATION.md](./MIGRATION.md) file that contains more information.

# Installation

``` bash
Expand All @@ -39,13 +35,13 @@ bower install paper-autocomplete

http://ellipticaljs.github.io/paper-autocomplete/

**Important: The demos only work with browers which are ES2015/ES6 compatible.**. This component is compatible with older
**Important: The demos only work with browers which are ES2015/ES6 compatible.**. This component is compatible with older
browsers as well, but the code need to be transpiled to ES5. `polymer build` and `polymer serve` can do that for you.
This code from this page is not transpiled.

# Want to contribute?

Check out our [Contributing guide](./CONTRIBUTING.md)!
Check out our [Contributing guide](./CONTRIBUTING.md)!

# For Developers

Expand Down
Loading