
This commit lints js file of the project, fixing all of the errors reported by eslint. Makes indentation consistent. Marks 'camelcase' rule as warning (will be fixed in a separate commit, after making sure, that none of them are required in html Also fixes a typo in css. Change-Id: If53345cb8dd100dac352c0e53c1a0093d3f0c1b9
14 lines
280 B
Plaintext
14 lines
280 B
Plaintext
# use standard openstack linting profile
|
|
extends: openstack
|
|
|
|
env:
|
|
# browser global variables.
|
|
browser: true
|
|
|
|
rules:
|
|
# Require camel case names
|
|
# http://eslint.org/docs/rules/camelcase
|
|
camelcase:
|
|
- 1 # report camelcase properties as warnings
|
|
- properties: "never"
|