annotate .eslintrc.js @ 8557:42312c8d070d

setup: bump version numbers to current max Based on 'pip freeze' before/after: sed -i -e '/>=[^#]*$/s/, < [0-9.]\+//g' -e 's, == , >= ,g' setup.py dev_requirements.txt Markdown 3.3 is a few months old could be bumped too ... but it change test output due to https://python-markdown.github.io/change_log/release-3.2/#codehilite-now-always-wraps-with-ltcodegt-tags and can wait. This is landing early in the development phase and will thus get good test coverage.
author Mads Kiilerich <mads@kiilerich.com>
date Wed, 06 May 2020 21:40:05 +0200
parents 4d36432bf705
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8254
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
1 module.exports = {
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
2 "env": {
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
3 "browser": true,
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
4 "es6": true,
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
5 "jquery": true
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
6 },
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
7 "extends": "eslint:recommended",
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
8 "globals": {
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
9 "Atomics": "readonly",
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
10 "SharedArrayBuffer": "readonly"
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
11 },
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
12 "parserOptions": {
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
13 "ecmaVersion": 2018,
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
14 "sourceType": "module"
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
15 },
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
16 "plugins": [
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
17 "html"
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
18 ],
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
19 "rules": {
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
20 }
4d36432bf705 eslint: install eslint with front-end so it can be run manually
Mads Kiilerich <mads@kiilerich.com>
parents:
diff changeset
21 };