datatracker/.eslintrc.js
Nicolas Giard deb01f2d83
test: remove cypress + migrate existing tests to playwright (#4781)
* test: remove cypress + migrate existing tests to playwright + update workflows

* ci: remove leftover condition in ci-run-tests workflow

* ci: add missing matrix to tests-playwright-legacy

* ci: run playwright legacy as user 1001

* ci: set home var for firefox

* ci: allow firefox to run as root for tests
2022-11-22 16:26:19 -06:00

29 lines
596 B
JavaScript

module.exports = {
root: true,
env: {
browser: true,
es2021: true,
jquery: true,
node: true,
'vue/setup-compiler-macros': true
},
extends: [
// 'plugin:vue/vue3-essential', // Priority A: Essential (Error Prevention)
'plugin:vue/vue3-strongly-recommended' // Priority B: Strongly Recommended (Improving Readability)
],
globals: {
d3: true
},
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: [
'vue'
],
rules: {
'vue/script-setup-uses-vars': 'error',
'vue/multi-word-component-names': 'off'
}
}