Chart.js/.eslintrc.yml
Jukka Kurkela 99aa1a4215
Switch to eslint-plugin-es (#8075)
* Switch to eslint-plugin-es

* Restore eslint-config-chartjs

* Sort
2020-11-19 21:23:24 +02:00

32 lines
726 B
YAML

extends:
- chartjs
- plugin:es/no-2019
env:
es6: true
browser: true
node: true
parserOptions:
ecmaVersion: 2018
sourceType: module
ecmaFeatures:
impliedStrict: true
modules: true
plugins: ['html', 'es']
rules:
class-methods-use-this: "off"
complexity: ["warn", 10]
max-statements: ["warn", 30]
no-empty-function: "off"
no-use-before-define: ["error", { "functions": false }]
# disable everything, except Rest/Spread Properties in ES2018
es/no-async-iteration: "error"
es/no-malformed-template-literals: "error"
es/no-regexp-lookbehind-assertions: "error"
es/no-regexp-named-capture-groups: "error"
es/no-regexp-s-flag: "error"
es/no-regexp-unicode-property-escapes: "error"